Author Topic: Transaction confirmed and recipient not seeing funds [SOLVED]  (Read 1500 times)

0 Members and 1 Guest are viewing this topic.

julian1

  • Guest
Is it possible that they did not notice that the amount is reflected in their balance because there is no transaction history entry showing the transfer? Transaction history currently does not work for public account transfers, but the funds should still be accessible to the recipient.

Thanks Vikram, it was as simple as this.

Funds were always there and spendable. Performing a cli TITAN transfer to self, revealed them in the GUI. My testing was all on the command-line using wallet_account_balance, which explains why I couldn't replicate the issue.

« Last Edit: December 25, 2014, 08:43:32 pm by julian1 »

Offline vikram

Weird, I just downgraded from HEAD 5208a9b to tag: v0.4.27.1 for an unrelated reason, and downloaded the chain again. I get your matching blocknum now.

Code: [Select]
wallet_get_transaction c1fb52f1ed2da653289aaa8aefbdf0e0dd46e2be | grep block
  "block_num": 1316155,
 
blockchain_get_transaction c1fb52f1ed2da653289aaa8aefbdf0e0dd46e2be | grep block
      "block_num": 1316155,[code]

Not sure if this explains why he cannot see the funds though. Is there a wallet re-scan action that could be tried?

This is not a TITAN transfer, so if they have the key that controls address "BTSHEqvNPEcRmTPLGypCTSdsqdV2w99L2or9" it should be reflected in their balance. There is a balance there with funds:
Code: [Select]
(wallet closed) >>> blockchain_list_address_balances BTSHEqvNPEcRmTPLGypCTSdsqdV2w99L2or9
[[
    "BTSMmQpqqogmrSsGJRvX5ADHQ2ZPAJojPcSs",{
      "condition": {
        "asset_id": 286,
        "slate_id": 0,
        "type": "withdraw_signature_type",
        "data": {
          "owner": "BTSHEqvNPEcRmTPLGypCTSdsqdV2w99L2or9",
          "memo": null
        }
      },
      "balance": 400000,
      "restricted_owner": null,
      "snapshot_info": null,
      "deposit_date": "2014-12-21T22:33:20",
      "last_update": "2014-12-23T09:42:50"
    }
  ]
]

They can verify that they have the key by trying "wallet_dump_private_key BTSHEqvNPEcRmTPLGypCTSdsqdV2w99L2or9".

Is it possible that they did not notice that the amount is reflected in their balance because there is no transaction history entry showing the transfer? Transaction history currently does not work for public account transfers, but the funds should still be accessible to the recipient.

julian1

  • Guest
Weird, I just downgraded from HEAD 5208a9b to tag: v0.4.27.1 for an unrelated reason, and downloaded the chain again. I get your matching blocknum now.

Code: [Select]
wallet_get_transaction c1fb52f1ed2da653289aaa8aefbdf0e0dd46e2be | grep block
  "block_num": 1316155,
 
blockchain_get_transaction c1fb52f1ed2da653289aaa8aefbdf0e0dd46e2be | grep block
      "block_num": 1316155,[code]

Not sure if this explains why he cannot see the funds though. Is there a wallet re-scan action that could be tried?

Offline bytemaster

Blockchain get transaction: blockchain_get_transaction c1fb52f1ed2da653289aaa8aefbdf0e0dd46e2be

Code: [Select]
    "chain_location": {
      "block_num": 1316155,
      "trx_num": 0
    }
« Last Edit: December 22, 2014, 04:20:45 pm by bytemaster »
For the latest updates checkout my blog: http://bytemaster.bitshares.org
Anything said on these forums does not constitute an intent to create a legal obligation or contract between myself and anyone else.   These are merely my opinions and I reserve the right to change them at any time.

julian1

  • Guest
I believe the transaction details which involve wallet_transfer_to_address to the recipient's active BTS native-address are correct. Local Bitshares node shows tx is confirmed, but recipient does not see funds in wallet.

wallet_get_transaction c1fb52f1ed2da653289aaa8aefbdf0e0dd46e2be | egrep 'confirmed|block_num'
  "block_num": 1315350,
  "is_confirmed": true,

Checking the block with http://www.bitsharesblocks.com/blocks/block?id=1315350, shows no transactions recorded which is odd?

about | grep client_version
  "client_version": "v0.4.27.1-12-g5208a9b",

More details,
 
https://bitsharestalk.org/index.php?topic=12527.msg165280#msg165280
« Last Edit: December 25, 2014, 08:28:56 pm by julian1 »