Hello Everyone,
I just commited some changes into github to block transactions from the lost wallet. I tried it both in an existing installation and in a fresh one (which requires the blockchain to be downloaded) and it seems to be working ok.
I'd like to have it peer-reviewed and tested by some of you before we build the official wallets.
Thanks,
Adriano
I'm sure you will have thought of this already, but can you confirm that transactions are still blocked if the private key is exported and then imported to a new wallet?
Yep, the patch is watching two places:
1. New transactions, not yet in a block. Do not accept any new transaction spent coins tied to that address into mempool (this prevents such transaction being add in block generated by authentic wallets);
2. When receiving a new block, it checks if there are any transactions sent from that address in blocks higher than 28647 (this is the last block containing a valid transaction on the wallet before its key was lost.
Adriano
Sounds promising.