/**
  * Provides information about transaction txid related to address in this node’s wallet, including how it affected
  * that address’s balance. Use verbose to provide details of transaction inputs and outputs.
  *
  * @group address
  * @group transaction
  */
 public function testGetAddressTransaction()
 {
     $address1 = $this->multichain->getNewAddress();
     $address2 = $this->multichain->getNewAddress();
     $assetInfo = $this->createTestAsset($address1);
     $txId = $this->multichain->sendToAddress($address2, array($assetInfo["name"] => 100));
     $this->multichain->setDebug(true)->getAddressTransaction($address2, $txId, true);
 }