Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
0xAustinWang committed Nov 25, 2024
1 parent e9d7280 commit 2e0975d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 11 deletions.
4 changes: 4 additions & 0 deletions deployment/environment/memory/sim.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,10 @@ func (b *Backend) NonceAt(ctx context.Context, account common.Address, blockNumb
return b.Sim.Client().NonceAt(ctx, account, blockNumber)
}

func (b *Backend) BlockByNumber(ctx context.Context, number *big.Int) (*types.Block, error) {
return b.Sim.Client().BlockByNumber(ctx, number)
}

func NewBackend(sim *simulated.Backend) *Backend {
if sim == nil {
panic("simulated backend is nil")
Expand Down
11 changes: 0 additions & 11 deletions integration-tests/load/ccip/commit.go

This file was deleted.

0 comments on commit 2e0975d

Please sign in to comment.