Skip to content

Commit

Permalink
fix(test): Use fast relayer address (#708)
Browse files Browse the repository at this point in the history
  • Loading branch information
pxrl authored Aug 21, 2024
1 parent c44759e commit a5e512a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/common.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import assert from "assert";
import { SpokePool, SpokePool__factory } from "@across-protocol/contracts";
import dotenv from "dotenv";
import { providers } from "ethers";
import { DEFAULT_SIMULATED_RELAYER_ADDRESS } from "../src/constants";
import {
estimateTotalGasRequiredByUnsignedTransaction,
fixedPointAdjustment,
Expand Down Expand Up @@ -37,7 +38,7 @@ describe("Utils test", () => {

it("apply gas multiplier", async () => {
const spokePoolAddress = "0x5c7BCd6E7De5423a257D81B442095A1a6ced35C5"; // mainnet
const relayerAddress = "0x428AB2BA90Eba0a4Be7aF34C9Ac451ab061AC010";
const relayerAddress = DEFAULT_SIMULATED_RELAYER_ADDRESS;

// @todo: Ensure that NODE_URL_1 is always defined in test CI?
const rpcUrl = process.env.NODE_URL_1 ?? "https://cloudflare-eth.com";
Expand Down

0 comments on commit a5e512a

Please sign in to comment.