Skip to content

Commit 471d4b9

Browse files
committed
fix(taiko-client,taiko-client-rs): update timestamp max offset
1 parent 96270ae commit 471d4b9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/taiko-client-rs/crates/protocol/src/shasta/constants.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ pub const MAX_ANCHOR_OFFSET: u64 = 128;
1515
pub const MIN_ANCHOR_OFFSET: u64 = 2;
1616

1717
/// The maximum timestamp offset from the proposal origin timestamp.
18-
pub const TIMESTAMP_MAX_OFFSET: u64 = 12 * 32;
18+
pub const TIMESTAMP_MAX_OFFSET: u64 = 12 * 128;
1919

2020
/// The minimum block gas limit.
2121
pub const MIN_BLOCK_GAS_LIMIT: u64 = 10_000_000;

packages/taiko-client/bindings/manifest/manifest.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const (
1414
// ProposalMaxBlocks The maximum number of blocks allowed in a proposal.
1515
ProposalMaxBlocks = 384
1616
// TimestampMaxOffset The maximum number timestamp offset from the proposal origin timestamp.
17-
TimestampMaxOffset = 12 * 32
17+
TimestampMaxOffset = 12 * 128
1818
// AnchorMinOffset The minimum anchor block number offset from the proposal origin block number.
1919
AnchorMinOffset = 2
2020
// AnchorMaxOffset The maximum anchor block number offset from the proposal origin block number.

0 commit comments

Comments
 (0)