strict greater there

This commit is contained in:
NikVolf 2016-11-15 13:23:49 +03:00
parent 584ec20e1f
commit 7d6ee29e6b
1 changed files with 1 additions and 1 deletions

View File

@ -186,7 +186,7 @@ impl Verify for ChainVerifier {
.map_err(|e| Error::Transaction(idx+1, TransactionError::SignatureMallformed(format!("{}", e))))
);
if block_sigops >= MAX_BLOCK_SIGOPS {
if block_sigops > MAX_BLOCK_SIGOPS {
return Err(Error::MaximumSigops);
}