3
How do I update offline Electrum wallet after receiving payment with Online seedless wallet?
The guide at: http://electrum.org/tutorials.html#offline-mpk does not say. It only says how to make payments from the offline wallet but not how to receive money to it. I can receive payments to my online seedless wallet, but I don't know how to transfer that to the seeded offline wallet.
Thanks.
P.S. In case some Electrum dev read this there is also an outdated instruction: [Offline PC] Go to Settings -> Import/Export and copy your "Master Public Key" and put it in a text file on your USB-Key. >>> This is now Wallet -> Master Public Key.
3To add, if you are using a lot of addresses it might be that the offline wallet has not yet generated those other addresses. In that scenario I imagine you will have to manually generate the addresses using the console command:
wallet.accounts[0].create_new_address(0)orwallet.accounts[0].create_new_address(1)for change addresses. Alternatively you can increase the gap limitwallet.storage.put('gap_limit', 100)– Abdussamad – 2013-12-01T11:43:53.227I think this is not needed as the client now uses deterministic signatures. But would be needed if you are generating the addresses trough a script for an online store or something similar. – rdymac – 2013-12-01T15:27:03.490
the private key has to be there in the offline wallet for it to sign a transaction: https://bitcointalk.org/index.php?topic=344115.0
– Abdussamad – 2013-12-06T12:35:07.547