aboutsummaryrefslogtreecommitdiff
path: root/tests/core_tests/transaction_tests.cpp
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2024-05-20 23:42:54 -0500
committerluigi1111 <luigi1111w@gmail.com>2024-05-20 23:42:54 -0500
commit1ec7eae0364a9d13db6aebc5819468f07667e7ab (patch)
tree838c211368e6b486fef301b696cfc0bddbf6647b /tests/core_tests/transaction_tests.cpp
parent2f0503d7f3462410a8c21a7baca35fa18763b4b7 (diff)
parentdd47d03cf2b5b3dc59cd99aca247d1025679f83a (diff)
downloadmonzero-core-1ec7eae0364a9d13db6aebc5819468f07667e7ab.tar.gz
monzero-core-1ec7eae0364a9d13db6aebc5819468f07667e7ab.tar.xz
monzero-core-1ec7eae0364a9d13db6aebc5819468f07667e7ab.zip
Merge pull request #9311
dd47d03 Enforce Tx unlock_time is Zero by Relay Rule [RELEASE] (jeffro256)
Diffstat (limited to 'tests/core_tests/transaction_tests.cpp')
-rw-r--r--tests/core_tests/transaction_tests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/core_tests/transaction_tests.cpp b/tests/core_tests/transaction_tests.cpp
index 0f8df5030..3bc34956e 100644
--- a/tests/core_tests/transaction_tests.cpp
+++ b/tests/core_tests/transaction_tests.cpp
@@ -102,7 +102,7 @@ bool test_transaction_generation_and_ring_signature()
destinations.push_back(td);
transaction tx_rc1;
- bool r = construct_tx(miner_acc2.get_keys(), sources, destinations, boost::none, std::vector<uint8_t>(), tx_rc1, 0);
+ bool r = construct_tx(miner_acc2.get_keys(), sources, destinations, boost::none, std::vector<uint8_t>(), tx_rc1);
CHECK_AND_ASSERT_MES(r, false, "failed to construct transaction");
crypto::hash pref_hash = get_transaction_prefix_hash(tx_rc1);