Skip to content

Commit 2dd033c

Browse files
committed
fix: fmt
1 parent 31a1066 commit 2dd033c

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

src/Zenith.sol

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ contract Zenith is Passage, AccessControlDefaultAdminRules {
5252
/// @param sequencer - the address of the sequencer that signed the block.
5353
/// @param header - the block header information for the block.
5454
/// @param blockDataHash - keccak256(blockData). the Node will discard the block if the hash doens't match.
55-
event BlockSubmitted(address indexed sequencer, BlockHeader indexed headerHash, BlockHeader header, bytes32 blockDataHash);
55+
event BlockSubmitted(
56+
address indexed sequencer, BlockHeader indexed headerHash, BlockHeader header, bytes32 blockDataHash
57+
);
5658

5759
/// @notice Emit the entire block data for easy visibility
5860
event BlockData(bytes blockData);

test/Zenith.t.sol

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,12 @@ contract ZenithTest is Test {
1616
uint256 sequencerKey = 123;
1717
uint256 notSequencerKey = 300;
1818

19-
event BlockSubmitted(address indexed sequencer, Zenith.BlockHeader indexed headerHash, Zenith.BlockHeader header, bytes32 blockDataHash);
19+
event BlockSubmitted(
20+
address indexed sequencer,
21+
Zenith.BlockHeader indexed headerHash,
22+
Zenith.BlockHeader header,
23+
bytes32 blockDataHash
24+
);
2025

2126
function setUp() public {
2227
target = new Zenith(block.chainid + 1, address(this));

0 commit comments

Comments
 (0)