diff options
| author | Pieter Wuille <[email protected]> | 2011-07-13 11:56:38 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2011-12-17 21:49:48 +0100 |
| commit | 95d888a6d1f659a5cb81124e0d97966b9de1f139 (patch) | |
| tree | db17f76d0517ddbf12fd9144948816e930439eef /src/makefile.mingw | |
| parent | Preparations for key import/export (diff) | |
| download | discoin-95d888a6d1f659a5cb81124e0d97966b9de1f139.tar.xz discoin-95d888a6d1f659a5cb81124e0d97966b9de1f139.zip | |
Key import and export
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
Diffstat (limited to 'src/makefile.mingw')
| -rw-r--r-- | src/makefile.mingw | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/makefile.mingw b/src/makefile.mingw index ce3da062e..ed718b89e 100644 --- a/src/makefile.mingw +++ b/src/makefile.mingw @@ -70,6 +70,7 @@ OBJS= \ obj/net.o \ obj/protocol.o \ obj/bitcoinrpc.o \ + obj/rpcdump.o \ obj/script.o \ obj/util.o \ obj/wallet.o |