bugfix; seen members not zeroed

This commit is contained in:
Scott Sadler
2018-09-06 00:14:45 -03:00
parent 040078433f
commit 062b770927

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)
{