Author Topic: why wallet_recover_transaction not working?  (Read 2069 times)

0 Members and 1 Guest are viewing this topic.

Offline vikram

i try follow http://wiki.bitshares.org/index.php/Best_Practices/RecoverFunds
but failed

>> wallet_recover_transaction #5376b778

20022 transaction_not_found: transaction not found
Transaction not found!
    {"transaction_id_prefix":"#5376b778"}
    bitshares  transaction_ledger.cpp:1779 bts::wallet::wallet::get_transaction

    {}
    bitshares  wallet.cpp:2722 bts::wallet::wallet::recover_transaction

    {}
    bitshares  common_api_client.cpp:6330 bts::rpc_stubs::common_api_client::wallet_recover_transaction

    {"command":"wallet_recover_transaction"}
    bitshares  cli.cpp:626 bts::cli::detail::cli_impl::execute_command

You have not explained what problem you are having.

Code: [Select]
income (locked) >>> blockchain_get_transaction 5376b778
[
  "5376b778e71f4efc337b2d4a994f08fc22dbb07e",{
    "trx": {
      "expiration": "2014-07-19T22:01:31",
      "reserved": null,
      "operations": [{
          "type": "register_account_op_type",
          "data": {
            "name": "edu",
            "public_data": {
              "gravatarID": ""
            },
            "owner_key": "BTS8jrfWcb2APdC4h5PogDVFrVMWMkYGnz5t995JmSQyYrb98Bm7P",
            "active_key": "BTS8jrfWcb2APdC4h5PogDVFrVMWMkYGnz5t995JmSQyYrb98Bm7P",
            "delegate_pay_rate": 255,
            "meta_data": null
          }
        },{
          "type": "withdraw_op_type",
          "data": {
            "balance_id": "BTSDQxbCeW66Mat1xnqJ7bb9yhEa5qKt1B1d",
            "amount": 10015,
            "claim_input_data": ""
          }
        }
      ],
      "signatures": [
        "1f53e0ebc6c63c126ad42022b35f740ef3ddb9f5bc86f74bae5f69124cb53552fb2cb0f64016903ea6bd629557a30c31794c2ecc9f7454a87e127cf9ad2000af18"
      ]
    },

Offline sudo

  • Hero Member
  • *****
  • Posts: 2255
    • View Profile
  • BitShares: ags
run
Code: [Select]
wallet_regenerate_keys ACCOUNTNAME 10500
and wait for the rescan to finish. then recheck your balance/transactions

wallet_regenerate_keys to many keys will make the computer lag
if it is possible to find the latest key numbers?


today  the latest transaction in my wallet  tx =510b1d79

>> enable_raw
>> get_transaction 510b1d79

{
  "index": 8117,
……
does that mean  my account  cotain&used    8117  keys?

Offline xeroc

  • Board Moderator
  • Hero Member
  • *****
  • Posts: 12922
  • ChainSquad GmbH
    • View Profile
    • ChainSquad GmbH
  • BitShares: xeroc
  • GitHub: xeroc
run
Code: [Select]
wallet_regenerate_keys ACCOUNTNAME 10500
and wait for the rescan to finish. then recheck your balance/transactions

Offline sudo

  • Hero Member
  • *****
  • Posts: 2255
    • View Profile
  • BitShares: ags
have you tried without the hastag '#':

Code: [Select]
wallet_recover_transaction 5376b778

still wrong  but different  echo

>> wallet_recover_transaction 5376b778

10 assert_exception: Assert Exception
has_deposit:
    {}
    bitshares  wallet.cpp:2663 bts::wallet::wallet::recover_transaction

    {}
    bitshares  wallet.cpp:2722 bts::wallet::wallet::recover_transaction

    {}
    bitshares  common_api_client.cpp:6330 bts::rpc_stubs::common_api_client::wallet_recover_transaction

    {"command":"wallet_recover_transaction"}
    bitshares  cli.cpp:626 bts::cli::detail::cli_impl::execute_command

wallet_recover_transaction is only for attempting to recover TITAN deposit transaction memos. 5376b778 is just an account registration.

ok i get it.      a2606caa is market order
>> enable_raw
get_transaction a2606caa can get
 BID-9f1266c5…………

 wallet_recover_transaction  still wrong
>> wallet_recover_transaction a2606caa

10 assert_exception: Assert Exception
transaction_record.ledger_entries.size() == 1:
    {}
    bitshares  wallet.cpp:2636 bts::wallet::wallet::recover_transaction

    {}
    bitshares  wallet.cpp:2722 bts::wallet::wallet::recover_transaction

    {}
    bitshares  common_api_client.cpp:6330 bts::rpc_stubs::common_api_client::wallet_recover_transaction

    {"command":"wallet_recover_transaction"}
    bitshares  cli.cpp:626 bts::cli::detail::cli_impl::execute_command

Offline vikram

have you tried without the hastag '#':

Code: [Select]
wallet_recover_transaction 5376b778

still wrong  but different  echo

>> wallet_recover_transaction 5376b778

10 assert_exception: Assert Exception
has_deposit:
    {}
    bitshares  wallet.cpp:2663 bts::wallet::wallet::recover_transaction

    {}
    bitshares  wallet.cpp:2722 bts::wallet::wallet::recover_transaction

    {}
    bitshares  common_api_client.cpp:6330 bts::rpc_stubs::common_api_client::wallet_recover_transaction

    {"command":"wallet_recover_transaction"}
    bitshares  cli.cpp:626 bts::cli::detail::cli_impl::execute_command

wallet_recover_transaction is only for attempting to recover TITAN deposit transaction memos. 5376b778 is just an account registration.

Offline sudo

  • Hero Member
  • *****
  • Posts: 2255
    • View Profile
  • BitShares: ags
have you tried without the hastag '#':

Code: [Select]
wallet_recover_transaction 5376b778

still wrong  but different  echo

>> wallet_recover_transaction 5376b778

10 assert_exception: Assert Exception
has_deposit:
    {}
    bitshares  wallet.cpp:2663 bts::wallet::wallet::recover_transaction

    {}
    bitshares  wallet.cpp:2722 bts::wallet::wallet::recover_transaction

    {}
    bitshares  common_api_client.cpp:6330 bts::rpc_stubs::common_api_client::wallet_recover_transaction

    {"command":"wallet_recover_transaction"}
    bitshares  cli.cpp:626 bts::cli::detail::cli_impl::execute_command

Offline xeroc

  • Board Moderator
  • Hero Member
  • *****
  • Posts: 12922
  • ChainSquad GmbH
    • View Profile
    • ChainSquad GmbH
  • BitShares: xeroc
  • GitHub: xeroc
have you tried without the hastag '#':

Code: [Select]
wallet_recover_transaction 5376b778

Offline sudo

  • Hero Member
  • *****
  • Posts: 2255
    • View Profile
  • BitShares: ags
i try follow http://wiki.bitshares.org/index.php/Best_Practices/RecoverFunds
but failed

>> wallet_recover_transaction #5376b778

20022 transaction_not_found: transaction not found
Transaction not found!
    {"transaction_id_prefix":"#5376b778"}
    bitshares  transaction_ledger.cpp:1779 bts::wallet::wallet::get_transaction

    {}
    bitshares  wallet.cpp:2722 bts::wallet::wallet::recover_transaction

    {}
    bitshares  common_api_client.cpp:6330 bts::rpc_stubs::common_api_client::wallet_recover_transaction

    {"command":"wallet_recover_transaction"}
    bitshares  cli.cpp:626 bts::cli::detail::cli_impl::execute_command