Browse Source

bugfix; seen members not zeroed

pull/27/head
Scott Sadler 6 years ago
parent
commit
062b770927
  1. 2
      src/crosschain_authority.cpp

2
src/crosschain_authority.cpp

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

Loading…
Cancel
Save