Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion defines.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#define DEFAULT_SCHEDULED_TICK_OFFSET 8
#define DEFAULT_NODE_PORT 21841
#define DEFAULT_NODE_IP "127.0.0.1"
#define NUMBER_OF_TRANSACTIONS_PER_TICK 1024
#define NUMBER_OF_TRANSACTIONS_PER_TICK 4096
#define SIGNATURE_SIZE 64
#define MAX_INPUT_SIZE 1024ULL
#define MAX_TRANSACTION_SIZE (MAX_INPUT_SIZE + sizeof(Transaction) + SIGNATURE_SIZE)
Expand Down
2 changes: 1 addition & 1 deletion node_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2065,7 +2065,7 @@ void getVoteCounterTransaction(const char* nodeIp, const int nodePort, unsigned
auto extraData = std::make_unique<std::vector<ExtraDataStruct>>();
extraData->reserve(NUMBER_OF_TRANSACTIONS_PER_TICK);

getTickTransactions(qc, requestedTick, 1024, *txs, /*hashes=*/nullptr, extraData.get(), /*sigs=*/nullptr);
getTickTransactions(qc, requestedTick, NUMBER_OF_TRANSACTIONS_PER_TICK, *txs, /*hashes=*/nullptr, extraData.get(), /*sigs=*/nullptr);

auto td = std::make_unique<TickData>();
getTickData(qc, requestedTick, *td);
Expand Down
Loading