Introduces three new RPC calls:
- dumpprivkey: retrieve the private key corresponding to an address
- importprivkey: add a private key to your wallet
- removeprivkey: delete a private key from your wallet
Introduces three new RPC calls:
ACK
NACK for version 0.5 -- I think removeprivkey needs at least a warning that it can modify unrelated account balances, and maybe a dump of what it did to the wallet so there is some chance of an 'undo' if the wrong key is removed.
Introduces two new RPC calls:
* dumpprivkey: retrieve the private key corresponding to an address
* importprivkey: add a private key to your wallet
The private key format is analoguous to the address format. It is
a 51-character base58-encoded string, that includes a version number
and a checksum.
Includes patch by mhanne:
* add optional account parameter for importprivkey, if omitted use default
As per Gavin's request, removeprivkey is disabled for now.