Skip to content

Commit

Permalink
BlockParams updated
Browse files Browse the repository at this point in the history
  • Loading branch information
mskrzypkows committed Aug 26, 2024
1 parent 5d0b038 commit 6b31a80
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Node/src/ethereum_l1/execution_layer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,9 @@ sol! {
bytes signature;
uint32 l1StateBlockNumber;
uint64 timestamp;
uint32 blobTxListOffset;
uint32 blobTxListLength;
uint8 blobIndex;
}
}

Expand Down Expand Up @@ -202,6 +205,9 @@ impl ExecutionLayer {
signature: Bytes::from(vec![0; 32]),
l1StateBlockNumber: 0,
timestamp: 0,
blobTxListOffset: 0,
blobTxListLength: 0,
blobIndex: 0,
};

let encoded_block_params = Bytes::from(BlockParams::abi_encode_sequence(&block_params));
Expand Down

0 comments on commit 6b31a80

Please sign in to comment.