Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dantaik committed Mar 24, 2023
1 parent 92e913b commit 244be54
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ struct BlockMetadataInput {
```solidity
struct BlockMetadata {
uint64 id;
uint32 gasLimit;
uint64 timestamp;
uint64 l1Height;
uint32 gasLimit;
bytes32 l1Hash;
bytes32 mixHash;
bytes32 txListHash;
Expand Down Expand Up @@ -109,7 +109,7 @@ struct BlockEvidence {
bytes32 blockHash;
bytes32 signalRoot;
address prover;
uint64 gasUsed;
uint32 gasUsed;
}
```

Expand All @@ -128,12 +128,12 @@ struct ForkChoice {

```solidity
struct ProposedBlock {
mapping(uint256 => struct TaikoData.ForkChoice) forkChoices;
bytes32 metaHash;
uint256 deposit;
address proposer;
uint64 proposedAt;
uint64 deposit;
uint24 nextForkChoiceId;
mapping(uint256 => struct TaikoData.ForkChoice) forkChoices;
uint64 proposedAt;
}
```

Expand Down

0 comments on commit 244be54

Please sign in to comment.