diff options
| author | Andrew Chow <[email protected]> | 2018-11-06 09:23:43 -0500 |
|---|---|---|
| committer | Andrew Chow <[email protected]> | 2019-02-14 14:00:28 -0500 |
| commit | e7652d3f64212a6af68fc7d788411d28fcbdbd0a (patch) | |
| tree | 6fefe2f16e7e29c4af58765fad34064d758de483 /src/rpc/rawtransaction.cpp | |
| parent | Refactor keymetadata writing to a separate method (diff) | |
| download | discoin-e7652d3f64212a6af68fc7d788411d28fcbdbd0a.tar.xz discoin-e7652d3f64212a6af68fc7d788411d28fcbdbd0a.zip | |
Add WriteHDKeypath function and move *HDKeypath to util/bip32.{h,cpp}
Creates new files util/bip32.h and util/bip32.cpp for containing
BIP 32 stuff.
Moves FormatKeyPath from descriptor.cpp to util/bip32.
Adds a wrapper around it to prepent the 'm' for when just the
BIP 32 style keypath is needed.
Diffstat (limited to 'src/rpc/rawtransaction.cpp')
| -rw-r--r-- | src/rpc/rawtransaction.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rpc/rawtransaction.cpp b/src/rpc/rawtransaction.cpp index 7fe73e56d..3c7fa7b80 100644 --- a/src/rpc/rawtransaction.cpp +++ b/src/rpc/rawtransaction.cpp @@ -26,6 +26,7 @@ #include <script/sign.h> #include <script/standard.h> #include <uint256.h> +#include <util/bip32.h> #include <util/strencodings.h> #include <validation.h> #include <validationinterface.h> |