Skip to content
This repository has been archived by the owner on Feb 21, 2019. It is now read-only.

transaction to address not found by rescan #1080

Closed
xeroc opened this issue Dec 2, 2014 · 2 comments
Closed

transaction to address not found by rescan #1080

xeroc opened this issue Dec 2, 2014 · 2 comments
Labels
Milestone

Comments

@xeroc
Copy link
Member

xeroc commented Dec 2, 2014

Hey there.

I have an address I sent 1USD to. The tx looks like this

recovermobile (unlocked) >>> blockchain_get_block_transactions 1152610
[[
"27f58bf2eed0681c4630d9ef4267b6a7002360c0",{
  "trx": {
    "expiration": "2014-12-01T10:04:51",
    "delegate_slate_id": null,
    "operations": [{
    "type": "withdraw_op_type",
    "data": {
      "balance_id": "BTSFADBgPH1BnTMbK9wS4yXMHkZ8JwWfDUdw",
      "amount": 10250,
      "claim_input_data": ""
    } 
      },{
    "type": "deposit_op_type",
    "data": {
      "amount": 10000,
      "condition": {
        "asset_id": 22,
        "delegate_slate_id": 0,
        "type": "withdraw_signature_type",
        "data": {
          "owner": "BTS8xh91DMQHGtoc9zo5xNLumV374zhf5MgL",
          "memo": null
        } 
      } 
    } 
      } 
    ],
    "signatures": [
      "2025d5451337e58c127fef3908d26fcf85bd616e65fb2c0f8d47c0e08b4535fd084ccb317c6a2325d00dfc87a8b02a01e0d2b66f2b7c694e388eea3ccad19ac72f"
    ] 
  },

I do own the private key to it:

recovermobile (unlocked) >>> wallet_account_list_public_keys localtemp
[{
"hex": "025d8ebb55efb2ce88db4e30d13ed3c5d6454b8ca69d9f6b03e7f80b7711d0c662",
"native_pubkey": "BTS5bh9yeFMYCTDC99ZL2KLbBX8JLibiA5kxeHGM7d24dT1uxPMZe",
"native_address": "BTS8xh91DMQHGtoc9zo5xNLumV374zhf5MgL",
"pts_normal_address": "PnpqjMqJsVjw9AXgKhxsCLs26TLwqf118C",
"pts_compressed_address": "PuXYF9GgVPr2siYGpFi9LAu2FeKLdN66zw",
"btc_normal_address": "1Fu4bH9B7PnsLtipxDK23KcxrCv87AjPQz",
"btc_compressed_address": "1Nbm74aYjHty5SjRSm4JB9ey1PtWj776Lg"
  },{
"hex": "02b43ec88d58588f491e1ebb4bc3f603e20da95ecd134ba8554c83f3f1cdaed149",
"native_pubkey": "BTS6FsUbTcg4MDqYD5initH3dGjVmTh6s9r8gUM1KHirRe9bZyWM8",
"native_address": "BTS8E9bCWcVdEYGHGsf7UoMpGBs2PAv4budo",
"pts_normal_address": "Pw1hjYMTxsKpNH1KUVCYWPcYdVwdyJzDuK",
"pts_compressed_address": "PdhQzZjNx1EHuxmcNAyviSQjKDfxQkkXCP",
"btc_normal_address": "1Q5vbTfLCmNka1CU6zYhMNNVPFWp9kDvx2",
"btc_compressed_address": "16mdrV3FBuHE7gxkzgL5ZRAg4yF8aDmySF"
  },{
"hex": "03951de12283275decb07acf13a3566f17ef331ec115e31ecd6dd6f36444ec7aff",
"native_pubkey": "BTS7xuWuZFH7UmNMFT5DzXBD1T3eRG8B9v1nEKcEXZRbhxF7VrMXV",
"native_address": "BTS9BNnBUUKd3jsR8dtK4VrSTS2vfJAcqLEa",
"pts_normal_address": "Pn2PPUJMNsQ2tcBCfGesqDQen5XWSSFYES",
"pts_compressed_address": "PcWsQsYnQWn533wFvpv6eV5RYvxzHkhKqz",
"btc_normal_address": "1F6cFPcDcmSy6LNMHn12gCAbXq6gd2PT4n",
"btc_compressed_address": "15b6GnreeQq1En8QZLGFVTqNJgYATSTYi1"
  }
]

However rescanning for the full blockchain or just the block the tx is in does not give me access to the 1USD.
It does not even appear in "history".

If required I can send the private key for two transactions that are affected.

@vikramrajkumar
Copy link
Contributor

@xeroc I have taken a look:

(wallet closed) >>> blockchain_list_key_balances BTS5bh9yeFMYCTDC99ZL2KLbBX8JLibiA5kxeHGM7d24dT1uxPMZe
[[
    "BTSBddeVYZXtRQqCACE9yf6vKLbLm2SrFDno",{
      "condition": {
        "asset_id": 22,
        "delegate_slate_id": 0,
        "type": "withdraw_signature_type",
        "data": {
          "owner": "BTS8xh91DMQHGtoc9zo5xNLumV374zhf5MgL",
          "memo": null
        }
      },
      "balance": 0,
      "restricted_owner": null,
      "snapshot_info": null,
      "deposit_date": "2014-12-01T10:02:00",
      "last_update": "2014-12-02T13:25:20"
    }
  ]
]

It appears that any remaining USD was withdrawn on 2014-12-02T13:25:20. Are you sure it did not get withdrawn as part of another transaction of yours?

As for the transaction history, I do not think we have proper scanning for non-TITAN transfers yet: #973

@xeroc
Copy link
Member Author

xeroc commented Dec 4, 2014

@vikramrajkumar
Can confirm both .. bitUSD did indeed arrive .. I just didn't notice as I checked the history and NOT the balance .. Can also confirm that a resend just today did show up in the balance but not in the history ..
closing this issue .. thanks for taking the time

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

2 participants