From 7cb1f9f7eb8162a792b4b87bba99fa21c682582e Mon Sep 17 00:00:00 2001 From: Jonas Schnelli Date: Thu, 23 Jul 2015 16:14:17 +0200 Subject: fix and extend CBitcoinExtKeyBase template - fix Decode call (req. only one param) - add constructor for base58c->CExtKey --- src/base58.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/base58.h') diff --git a/src/base58.h b/src/base58.h index 787979c827..d535491bb0 100644 --- a/src/base58.h +++ b/src/base58.h @@ -146,7 +146,7 @@ public: K GetKey() { K ret; - ret.Decode(&vchData[0], &vchData[Size]); + ret.Decode(&vchData[0]); return ret; } @@ -154,6 +154,10 @@ public: SetKey(key); } + CBitcoinExtKeyBase(const std::string& strBase58c) { + SetString(strBase58c.c_str(), Params().Base58Prefix(Type).size()); + } + CBitcoinExtKeyBase() {} }; -- cgit v1.2.3