diff --git a/artifacts/test_program_methods/time_locked_transfer.bin b/artifacts/test_program_methods/time_locked_transfer.bin index 885a6579..b6267617 100644 Binary files a/artifacts/test_program_methods/time_locked_transfer.bin and b/artifacts/test_program_methods/time_locked_transfer.bin differ diff --git a/sequencer/core/src/config.rs b/sequencer/core/src/config.rs index 893370d8..fa4a2fa7 100644 --- a/sequencer/core/src/config.rs +++ b/sequencer/core/src/config.rs @@ -26,7 +26,8 @@ pub struct SequencerConfig { pub is_genesis_random: bool, /// Maximum number of user transactions in a block (excludes the mandatory clock transaction). pub max_num_tx_in_block: usize, - /// Maximum block size (includes header and transactions). + /// Maximum block size (includes header, user transactions, and the mandatory clock + /// transaction). #[serde(default = "default_max_block_size")] pub max_block_size: ByteSize, /// Mempool maximum size. diff --git a/sequencer/core/src/lib.rs b/sequencer/core/src/lib.rs index 51c4d3a9..642d663a 100644 --- a/sequencer/core/src/lib.rs +++ b/sequencer/core/src/lib.rs @@ -202,12 +202,20 @@ impl SequencerCore SequencerCore