0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-03-04 13:55:23 -05:00

don't try to decode invalid encoded ext keys

This commit is contained in:
Jonas Schnelli 2015-07-23 21:05:00 +02:00
parent 8d2af54ecc
commit 6f8b6d339b

View file

@ -146,7 +146,10 @@ public:
K GetKey() {
K ret;
ret.Decode(&vchData[0]);
if (vchData.size() == Size) {
//if base58 encouded data not holds a ext key, return a !IsValid() key
ret.Decode(&vchData[0]);
}
return ret;
}