mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 11:57:28 -03:00
fix and extend CBitcoinExtKeyBase template
- fix Decode call (req. only one param) - add constructor for base58c->CExtKey
This commit is contained in:
parent
633fe10869
commit
7cb1f9f7eb
1 changed files with 5 additions and 1 deletions
|
@ -146,7 +146,7 @@ public:
|
||||||
|
|
||||||
K GetKey() {
|
K GetKey() {
|
||||||
K ret;
|
K ret;
|
||||||
ret.Decode(&vchData[0], &vchData[Size]);
|
ret.Decode(&vchData[0]);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -154,6 +154,10 @@ public:
|
||||||
SetKey(key);
|
SetKey(key);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
CBitcoinExtKeyBase(const std::string& strBase58c) {
|
||||||
|
SetString(strBase58c.c_str(), Params().Base58Prefix(Type).size());
|
||||||
|
}
|
||||||
|
|
||||||
CBitcoinExtKeyBase() {}
|
CBitcoinExtKeyBase() {}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue