Merge pull request #2 from libscott/staked

bugfix; seen members not zeroed
This commit is contained in:
Alrighttt
2018-09-05 23:31:23 -04:00
committed by GitHub

View File

@@ -19,7 +19,7 @@ bool CheckTxAuthority(const CTransaction &tx, CrosschainAuthority auth)
if (tx.vin.size() < auth.requiredSigs) return false;
uint8_t seen[64];
uint8_t seen[64] = {0};
BOOST_FOREACH(const CTxIn &txIn, tx.vin)
{