Update the error message string for tx version too low. ref #1600

Signed-off-by: Daira Hopwood <daira@jacaranda.org>
This commit is contained in:
Daira Hopwood
2016-10-22 13:26:44 +01:00
parent 86d2c90468
commit cb1246194e
2 changed files with 2 additions and 2 deletions

View File

@@ -100,7 +100,7 @@ TEST(checktransaction_tests, BadVersionTooLow) {
CTransaction tx(mtx);
MockCValidationState state;
EXPECT_CALL(state, DoS(100, false, REJECT_INVALID, "bad-version-too-low", false)).Times(1);
EXPECT_CALL(state, DoS(100, false, REJECT_INVALID, "bad-txns-version-too-low", false)).Times(1);
CheckTransactionWithoutProofVerification(tx, state);
}