I have 2 BTCZ on address but I can't send money

Hi
I’ve sent 2 btcz on address:
https://explorer.btcz.rocks/address/t1aieBLQB3KSfTT6WjP3pkWERKecjoxT1dq

When I call rpc command: ./src/zcash-cli z_getbalance “t1aieBLQB3KSfTT6WjP3pkWERKecjoxT1dq”
I get result: 0.0000
Where are my 2 btcz ?

And I can’t send money (only 1 btcz) from this address because I get error:
./src/zcash-cli z_getoperationstatus ‘[“opid-3cff73b4-ae30-44a4-996d-1a59ae644754”]’
[
{
“id”: “opid-3cff73b4-ae30-44a4-996d-1a59ae644754”,
“status”: “failed”,
“creation_time”: 1566601464,
“error”: {
“code”: -6,
“message”: “Insufficient funds, no UTXOs found for taddr from address.”
},
“method”: “z_sendmany”,
“params”: {
“fromaddress”: “t1aieBLQB3KSfTT6WjP3pkWERKecjoxT1dq”,
“amounts”: [
{
“address”: “zcHR7x93Bgs6MrfQuFXegQoADLNxqzCZvN6ja4qFD3eHynBJJKm7vmNJJiug6N1WUF5Z1zVYpHT9MTnkBnb8r3pgPjwgBhR”,
“amount”: 1.0
}
],
“minconf”: 1,
“fee”: 0.0001
}
}
]

paging @ChileBob @garethtdavies, do y’all know the answer to this question?

(picks up the courtesy phone in the bar)

I’ve seen something similar when I tried to resend funds that were already in the process of being sent. Suggest waiting a while (like an hour or so), transaction expiry should return funds if the txn cant be mined.

2 Likes

Ok, I will wait and try again.

1 Like

Is your node fully synced?

1 Like

Just out of curiousity. Is the Zcash node/client working with BitcoinZ currency?

Sorry but I’m newbie. How to check this ?
This is my conf file:
testnet=0
addnode=mainnet.z.cash
rpcuser=username
rpcpassword=password
gen=1

Now I have error:
./src/zcash-cli z_getbalance “opid-e58af9ab-400d-42bb-ab22-1027ba9b8263”
error code: -5
error message:
Invalid from address, should be a taddr or zaddr.
My address that I added in sendmany is generated by getnewaddress but not by z_getnewaddress.

replace ‘testnet=0’ with ‘mainnet=1’

the ‘opid’ is not an address, its an ‘operation id’, which is why you’re getting that error

to list of all your shielded addresses :-
zcash-cli z_listaddresses

to check transactions for a shielded address, do :-
zcash-cli z_listreceivedbyaddress replace-with-your-zaddr

Ok, once again.
I’ve replaced testnet to mainnet.
I did operation sendmany:

./src/zcash-cli z_sendmany “t1aieBLQB3KSfTT6WjP3pkWERKecjoxT1dq” ‘[{“address”:“zcHR7x93Bgs6MrfQuFXegQoADLNxqzCZvN6ja4qFD3eHynBJJKm7vmNJJiug6N1WUF5Z1zVYpHT9MTnkBnb8r3pgPjwgBhR”,“amount”:1.0}]’

and I received operation id: opid-a23dd716-c42d-4edd-9355-a9d4cba62a5a

Now I want to check the status of the operation:
./src/zcash-cli z_getoperationstatus ‘[“opid-a23dd716-c42d-4edd-9355-a9d4cba62a5a”]’
[
{
“id”: “opid-a23dd716-c42d-4edd-9355-a9d4cba62a5a”,
“status”: “failed”,
“creation_time”: 1566779592,
“error”: {
“code”: -6,
“message”: “Insufficient funds, no UTXOs found for taddr from address.”
},
“method”: “z_sendmany”,
“params”: {
“fromaddress”: “t1aieBLQB3KSfTT6WjP3pkWERKecjoxT1dq”,
“amounts”: [
{
“address”: “zcHR7x93Bgs6MrfQuFXegQoADLNxqzCZvN6ja4qFD3eHynBJJKm7vmNJJiug6N1WUF5Z1zVYpHT9MTnkBnb8r3pgPjwgBhR”,
“amount”: 1.0
}
],
“minconf”: 1,
“fee”: 0.0001
}
}
]

and I have the same error: Insufficient funds, no UTXOs found for taddr from address.
On address from which I want to send 1 BTCZ I have 2 BTCZ, so it’s enough.
When I want to get a balance:
./src/zcash-cli z_getbalance “opid-a23dd716-c42d-4edd-9355-a9d4cba62a5a”
error code: -32700
error message:
Parse error

And listreceivedaddress for my address return empty array:

./src/zcash-cli z_listreceivedbyaddress zcHR7x93Bgs6MrfQuFXegQoADLNxqzCZvN6ja4qFD3eHynBJJKm7vmNJJiug6N1WUF5Z1zVYpHT9MTnkBnb8r3pgPjwgBhR

On my address is still 2btcz so I didn’t send any btcz.

Underlying confusion resolved in another thread.