Skip to content
4 changes: 2 additions & 2 deletions src/contract_core/contract_def.h
Original file line number Diff line number Diff line change
Expand Up @@ -543,8 +543,8 @@ static void initializeContracts()
// When enabling, replace both lines below, e.g.:
// constexpr unsigned int paddableContracts[] = { RANDOM_CONTRACT_INDEX };
// constexpr unsigned int paddableCount = sizeof(paddableContracts) / sizeof(paddableContracts[0]);
constexpr const unsigned int* paddableContracts = nullptr;
constexpr unsigned int paddableCount = 0;
constexpr unsigned int paddableContracts[] = { RANDOM_CONTRACT_INDEX };
constexpr unsigned int paddableCount = sizeof(paddableContracts) / sizeof(paddableContracts[0]);


// Class for registering and looking up user procedures independently of input type, for example for notifications
Expand Down
Loading
Loading