We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 303c47a commit e6829b3Copy full SHA for e6829b3
op-node/cmd/genesis/systemconfig.go
@@ -28,7 +28,7 @@ func NewSystemConfigContract(caller *batching.MultiCaller, addr common.Address)
28
}
29
30
func (c *SystemConfigContract) StartBlock(ctx context.Context) (*big.Int, error) {
31
- result, err := c.caller.SingleCall(ctx, rpcblock.Latest, c.contract.Call(methodStartBlock))
+ result, err := c.caller.SingleCall(ctx, rpcblock.ByNumber(0), c.contract.Call(methodStartBlock))
32
if err != nil {
33
return nil, fmt.Errorf("failed to call startBlock: %w", err)
34
0 commit comments