aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/base58.h6
1 files changed, 5 insertions, 1 deletions
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() {}
};