Merge branch 'dev' into zsweep

This commit is contained in:
Duke Leto
2022-09-12 09:40:35 -04:00
15 changed files with 8 additions and 485 deletions

View File

@@ -324,14 +324,6 @@ bool CBitcoinAddress::GetKeyID(CKeyID& keyID) const
return true;
}
bool CBitcoinAddress::GetKeyID_NoCheck(CKeyID& keyID) const
{
uint160 id;
memcpy(&id, &vchData[0], 20);
keyID = CKeyID(id);
return true;
}
bool CBitcoinAddress::IsScript() const
{
return IsValid() && vchVersion == Params().Base58Prefix(CChainParams::SCRIPT_ADDRESS);