(Solved) Lost some zcash from wallet after transaction

Hi, All,

I have a wallet with some t-address. I wanted to make a transaction to binance and used “zcash-cli z_sendmany”

Transaction did pass and have the output:

[
{
“id”: “opid-someidhere”,
“status”: “success”,
“creation_time”: 1526376514,
“result”: {
“txid”: “someIDhere”
},
“execution_secs”: 0.0479543,
“method”: “z_sendmany”,
“params”: {
“fromaddress”: “t1addrsender”,
“amounts”: [
{
“address”: “t1addrrecipient”,
“amount”: 2.4
}
],
“minconf”: 1,
“fee”: 0.0001
}
}
]

Before the transaction I had 2.47 in my wallet
After the transaction I have 0.00000000

Where did the 0.07 go? Can you help me identify the problem, please?

Regards

It will have been sent to a new change address (which is the default for t-addrs whereas z-addrs the amount is returned to the same address).

You can confirm this with zcash-cli z_gettotalbalance and it should be there (assuming you have a confirmation, or just add 0 after to show unconfirmed balance).

To see what the address actually is try zcash-cli listaddressgroupings and you should see it listed.

Hi, garethtdavies,

Thank you very much :smiley: Mystery is revealed now.

Regards