diff options
author | glozow <gloriajzhao@gmail.com> | 2023-12-15 12:17:44 +0000 |
---|---|---|
committer | glozow <gloriajzhao@gmail.com> | 2024-02-08 21:50:55 +0000 |
commit | 9a1fea55b29fe025355b06b45e3d77d192acc635 (patch) | |
tree | c4ca8ce5cfd5446ad88a5464c524e2e7a9441629 /src/test | |
parent | eb8d5a2e7d939dd3ee683486e98702079e0dfcc0 (diff) |
[policy/validation] allow v3 transactions with certain restrictions
Co-authored-by: Suhas Daftuar <sdaftuar@gmail.com>
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/transaction_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/transaction_tests.cpp b/src/test/transaction_tests.cpp index 5329c6ac99..7e48bee269 100644 --- a/src/test/transaction_tests.cpp +++ b/src/test/transaction_tests.cpp @@ -790,7 +790,7 @@ BOOST_AUTO_TEST_CASE(test_IsStandard) t.nVersion = 0; CheckIsNotStandard(t, "version"); - t.nVersion = 3; + t.nVersion = TX_MAX_STANDARD_VERSION + 1; CheckIsNotStandard(t, "version"); // Allowed nVersion |