0
I added 2-2 MultiSig address into wallet via bitcoin cli (Testnet)
addmultisigaddress <'["key","key"]'> [account]
1 key of current wallet and other public key from different node wallet.
Account is showing
0.000000
Although more than six confirmations on the transaction: https://live.blockcypher.com/btc-testnet/tx/297b6f6c14486e9eda1b2a04e20e3bd161758afeafa7d4b0109fa7fca11154ae/
Most importantly listaccounts not listing the account associated with the MultiSig address.
getaddressesbyaccount [MultiSigAccount] shows the MultiSig address created above.
How can I get the balance of MultiSig address via bitcoin-cli?
Edit 1:
What does this command return: $ bitcoin-cli -testnet validateaddress <your-multisig-address>?
{
"isvalid": true,
"address": "2Mv4iYeyQtVV1M7rqzgUc68QzQ21vy1o36Z",
"scriptPubKey": "a9141eeba411eae41a1a3dc7456ec4d599aef84afd7687",
"ismine": false,
"iswatchonly": true,
"isscript": true,
"iswitness": false,
"script": "witness_v0_scripthash",
"hex": "00206e908e1cca44b136fbf666f356114ca6a84c1fbed0327a155c204580310a7a11",
"embedded": {
"isscript": true,
"iswitness": true,
"witness_version": 0,
"witness_program": "6e908e1cca44b136fbf666f356114ca6a84c1fbed0327a155c204580310a7a11",
"script": "multisig",
"hex": "52210240d4ae4819e35e346560efe665f79453210a0b26184e08705964c5eb89e885ca2103fcc7e4690f7bd3a51db7ed438ef9a7ffb0bf316467f39b384935befee4eb208552ae",
"sigsrequired": 2,
"pubkeys": [
"0240d4ae4819e35e346560efe665f79453210a0b26184e08705964c5eb89e885ca",
"03fcc7e4690f7bd3a51db7ed438ef9a7ffb0bf316467f39b384935befee4eb2085"
],
"address": "tb1qd6ggu8x2gjcnd7lkvme4vy2v565yc8a76qe8592uypzcqvg20ggslwnwl8",
"scriptPubKey": "00206e908e1cca44b136fbf666f356114ca6a84c1fbed0327a155c204580310a7a11"
},
"addresses": [
"tb1qd6ggu8x2gjcnd7lkvme4vy2v565yc8a76qe8592uypzcqvg20ggslwnwl8"
],
"account": "multisig22",
"timestamp": 0
}