diff options
| author | Pieter Wuille <[email protected]> | 2017-09-19 18:12:25 -0700 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2018-02-19 18:55:21 -0800 |
| commit | 119b0f85e2c8b9729228aad5d946144d57ad0f5b (patch) | |
| tree | 995176b950d3a072f68e3f799d166362407c5c08 /src/rpc/misc.cpp | |
| parent | Stop using CBase58Data for ext keys (diff) | |
| download | discoin-119b0f85e2c8b9729228aad5d946144d57ad0f5b.tar.xz discoin-119b0f85e2c8b9729228aad5d946144d57ad0f5b.zip | |
Split key_io (address/key encodings) off from base58
Diffstat (limited to 'src/rpc/misc.cpp')
| -rw-r--r-- | src/rpc/misc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/misc.cpp b/src/rpc/misc.cpp index 8d62fbe5c..6f0913410 100644 --- a/src/rpc/misc.cpp +++ b/src/rpc/misc.cpp @@ -3,12 +3,12 @@ // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#include <base58.h> #include <chain.h> #include <clientversion.h> #include <core_io.h> #include <crypto/ripemd160.h> #include <init.h> +#include <key_io.h> #include <validation.h> #include <httpserver.h> #include <net.h> |