Skip to content

Commit

Permalink
fix(e2e): wrong evm client used for TestDAppV2ZEVM (#3060)
Browse files Browse the repository at this point in the history
  • Loading branch information
lumtis authored Oct 29, 2024
1 parent b3e903d commit d9ee4f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/zetae2e/config/contracts.go
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ func setContractsFromConfig(r *runner.E2ERunner, conf config.Config) error {
if err != nil {
return fmt.Errorf("invalid TestDAppV2Addr: %w", err)
}
r.TestDAppV2ZEVM, err = testdappv2.NewTestDAppV2(r.TestDAppV2ZEVMAddr, r.EVMClient)
r.TestDAppV2ZEVM, err = testdappv2.NewTestDAppV2(r.TestDAppV2ZEVMAddr, r.ZEVMClient)
if err != nil {
return err
}
Expand Down

0 comments on commit d9ee4f3

Please sign in to comment.