1
0
Fork 0
forked from lthn/blockchain

gcc warnings fixed

This commit is contained in:
sowle 2025-07-22 21:47:22 +03:00
parent 7a463d8065
commit 3e71f078ca
No known key found for this signature in database
GPG key ID: C07A24B2D89D49FC
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@
#define SHORTENER_EVERY_100_BLOCKS_SIZE 144
#define SHORTENER_EVERY_1000_BLOCKS_SIZE 144
static void exception_handler(){}
//static void exception_handler(){}

View file

@ -96,7 +96,7 @@ bool gen_double_spend_in_tx<txs_kept_by_block>::generate(std::vector<test_event_
currency::transaction tx_1 = AUTO_VAL_INIT(tx_1);
std::vector<currency::attachment_v> attachments;
size_t tx_hardfork_id{};
uint64_t tx_version = get_tx_version_from_events(events);
uint64_t tx_version = this->get_tx_version_from_events(events);
if (!construct_tx(bob_account.get_keys(), sources, destinations, attachments, tx_1, tx_version, tx_hardfork_id, uint64_t(0)))
return false;