Dear community,
I have executed the Asset issuance tutorial and created 50,000 GBP in my 3-node blockchain.
Then I transferred 1 GBP to node2 and 10 GBP to node3 from node1, who owned all 50,000 GBP.
If I look at the assettransaction (10 GBP from node1 -> node3) by using the hexID, I get the following result:
{"method":"getassettransaction","params":["GBP","feccedfa3cb8cf6b27d1c59035f588c77c7d2bfd557fa3623aac286f3342d178"],"id":1,"chain_name":"chain1"}
{
"addresses" : {
"12jL17GydyQJJSxtUpmPZkCCMeficF8Gm25DTK" : 10.00000000,
"16ogm231WCPeAyxFFkv65RBhqiHoNwLvVKis5R" : -10.00000000
},
"items" : [
],
"data" : [
],
"confirmations" : 11,
"blockhash" : "0013577dc1e160da990fa8b74c759de19de18efa317896feb5142f0992107d1d",
"blockindex" : 1,
"blocktime" : 1493231408,
"txid" : "feccedfa3cb8cf6b27d1c59035f588c77c7d2bfd557fa3623aac286f3342d178",
"valid" : true,
"time" : 1493231393,
"timereceived" : 1493231393
}
This statement can be executed from both node1 and node3, after subscribing to the GBP asset.
Here is my problem:
When executing getmultibalances * GBP on either of the nodes, I only see their own current assets, also summed up as total.
For example for node1:
{"method":"getmultibalances","params":["*","GBP"],"id":1,"chain_name":"chain1"}
{
"16ogm231WCPeAyxFFkv65RBhqiHoNwLvVKis5R" : [
{
"name" : "GBP",
"assetref" : "110-265-54370",
"qty" : 49989.00000000
}
],
"total" : [
{
"name" : "GBP",
"assetref" : "110-265-54370",
"qty" : 49989.00000000
}
]
}
I am a little confused, shouldn't I be able to see also the balances from node3 (10 GBP), and not only from myself node1?
Thanks for your help, I think I am missing something...
Nisse