Unable to open Backup binary file Linux

2

I recently reinstalled Linux mint; I backed up my wallet, and I am unable to import the backup created from the original wallet (Qt version 4.8.6.) to the newly installed wallet(Qt version 4.8.6.) I have just installed. When I try and open up the backup (binary file) using Bitcoin-QT a textbox appears with the message:

Payment request file can not be read or processed! This can be caused by an invalid payment request file.

Can anyone help with this please? Or, just point me in the right direction.

David

Posted 2014-11-19T11:10:50.777

Reputation: 21

I'm just learning Linux so I'm only able to help in the capacity of saying look into how the blockchain is bootstrapped using torrent. There's a trick like a detachdb flag or similar. It sounds like a blockchain issueWizard Of Ozzie 2014-11-19T12:45:16.020

-detachdb was removed in v0.8.0 as we no longer need it (the block databases now uses LevelDB, which is always portable).Pieter Wuille 2014-11-19T13:59:02.833

Answers

2

To restore a backed up wallet.dat file, you need to replace it manually.

Just overwrite the one in your data directory (see https://en.bitcoin.it/wiki/Data_directory to find it for your platform).

Opening the file with Bitcoin-Qt means you're trying to process a payment request; it's not for opening a wallet.

Pieter Wuille

Posted 2014-11-19T11:10:50.777

Reputation: 54 032

This is correct. Close the Bitcoin software, then for the majority of installs in a terminal run 'cp /path/to/your/backup/wallet.dat ~/.bitcoin/'. Now open bitcoin-qt again.George 2014-11-19T22:08:04.037

-3

You can try the command in your shell: bitcoin-qt -rescan It will rescan the block chain for missing wallet transactions.

Eleven

Posted 2014-11-19T11:10:50.777

Reputation: 187

2Please don't suggest using -rescan. It's only necessary if you manually edited the wallet file these days; rescanning is otherwise always automatic.Pieter Wuille 2014-11-19T13:57:15.947