mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-11 14:38:29 +01:00
[policy/validation] allow v3 transactions with certain restrictions
Co-authored-by: Suhas Daftuar <sdaftuar@gmail.com>
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user