Cleanup, rename, fix bug that returned false to return true when we do not recognize a transaction as invalid

This commit is contained in:
Michael Toutonghi
2018-04-23 10:54:12 -07:00
parent 29bd53a102
commit 6b78e01d5d
3 changed files with 15 additions and 15 deletions

View File

@@ -932,8 +932,9 @@ bool ContextualCheckCoinbaseTransaction(const CTransaction& tx, const int nHeigh
}
}
}
return(false);
}
return(false);
return(true);
}
/**