diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2017-09-19 18:12:25 -0700 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2018-02-19 18:55:21 -0800 |
commit | 119b0f85e2c8b9729228aad5d946144d57ad0f5b (patch) | |
tree | 995176b950d3a072f68e3f799d166362407c5c08 /src/wallet/walletdb.cpp | |
parent | ebfe217b15d21656a173e5c102f826d17c6c8be4 (diff) |
Split key_io (address/key encodings) off from base58
Diffstat (limited to 'src/wallet/walletdb.cpp')
-rw-r--r-- | src/wallet/walletdb.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/walletdb.cpp b/src/wallet/walletdb.cpp index dd6835a06f..c14fbd1e8c 100644 --- a/src/wallet/walletdb.cpp +++ b/src/wallet/walletdb.cpp @@ -5,10 +5,10 @@ #include <wallet/walletdb.h> -#include <base58.h> #include <consensus/tx_verify.h> #include <consensus/validation.h> #include <fs.h> +#include <key_io.h> #include <protocol.h> #include <serialize.h> #include <sync.h> |