Empty balance after syncing

I send money to my address tmEouXdtLW9wBZ83eU9eJM3uSfVBbNhB682 from faucet https://faucet.testnet.z.cash/

And accordding testnet block explorer there are 6 coins.
https://explorer.testnet.z.cash/address/tmEouXdtLW9wBZ83eU9eJM3uSfVBbNhB682

Node is fully synced, but getbalance command shows 0.

Ubuntu 16.04

zcash.conf

rpcuser=username
rpcpassword=123
testnet=1
addnode=testnet.z.cash

$ zcashd --version
Zcash Daemon version v1.1.2

$ zcash-cli getinfo
{
“version”: 1010250,
“protocolversion”: 170006,
“walletversion”: 60000,
“balance”: 0.00000000,
“blocks”: 283791,
“timeoffset”: 0,
“connections”: 8,
“proxy”: “”,
“difficulty”: 1160.609041541282,
“testnet”: true,
“keypoololdest”: 1533762360,
“keypoolsize”: 101,
“paytxfee”: 0.00000000,
“relayfee”: 0.00000100,
“errors”: “WARNING: check your network connection, 0 blocks received in the last 4 hours (96 expected)”
}

$ zcash-cli getbalance
0.00000000

$ zcash-cli listunspent
[
]

$ zcash-cli listreceivedbyaddress 0 true
[
{
“address”: “tmEouXdtLW9wBZ83eU9eJM3uSfVBbNhB682”,
“account”: “”,
“amount”: 0.00000000,
“confirmations”: 0,
“txids”: [
]
}
]

To see your coins you need to roll back to 1.1.0

You are currently on Sapling testnet but your coins are in Overwinter testnet.

4 Likes

Thank you. It worked out.

Sounds like hardfork in minor version. Very strange, usually minor versions are only for little bugfixes.