X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Fscript.cpp;fp=src%2Fscript.cpp;h=ad31b76feedac081b3a8378018b4be950a797783;hb=9e58e0a8ca28b15a4bfa677f5b23891972db40fd;hp=0f31de1a5efd4e59111d27cb799c0a40c4e04940;hpb=d4796a3a3259173f173a6b8c4832549f039de8da;p=novacoin.git diff --git a/src/script.cpp b/src/script.cpp index 0f31de1..ad31b76 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -1284,10 +1284,7 @@ bool CheckSig(vector vchSig, const vector &vchPubK { static CSignatureCache signatureCache; - CKey key; - if (!key.SetPubKey(vchPubKey)) - return false; - CPubKey pubkey = key.GetPubKey(); + CPubKey pubkey(vchPubKey); if (!pubkey.IsValid()) return false; @@ -1305,7 +1302,7 @@ bool CheckSig(vector vchSig, const vector &vchPubK if (signatureCache.Get(sighash, vchSig, pubkey)) return true; - if (!key.Verify(sighash, vchSig)) + if (!pubkey.Verify(sighash, vchSig)) return false; if (!(flags & SCRIPT_VERIFY_NOCACHE)) @@ -1315,12 +1312,6 @@ bool CheckSig(vector vchSig, const vector &vchPubK } - - - - - - // // Return public keys or hashes from scriptPubKey, for 'standard' transaction types. // @@ -2196,12 +2187,12 @@ void CScript::SetAddress(const CBitcoinAddress& dest) } } -void CScript::SetMultisig(int nRequired, const std::vector& keys) +void CScript::SetMultisig(int nRequired, const std::vector& keys) { this->clear(); *this << EncodeOP_N(nRequired); - BOOST_FOREACH(const CKey& key, keys) - *this << key.GetPubKey(); + BOOST_FOREACH(const CPubKey& key, keys) + *this << key; *this << EncodeOP_N((int)(keys.size())) << OP_CHECKMULTISIG; }