Skip to content

Commit

Permalink
Merge pull request #6306 from connext/reenable-base
Browse files Browse the repository at this point in the history
feat: reenable base
  • Loading branch information
wanglonghong authored Jul 16, 2024
2 parents c1bb1bc + 3878a9f commit 55d7664
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion ops/mainnet/prod/backend/config.tf
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ locals {
providers = ["https://polygon-zkevm-mainnet.blastapi.io/${var.blast_key}"]
}
"1650553709" = {
disabled = true
providers = ["https://base-mainnet.blastapi.io/${var.blast_key}"]
}
"1635148152" = {
Expand Down
4 changes: 2 additions & 2 deletions packages/utils/test/maticjs/proof.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const mockChainData = [
domainId: "1337",
confirmations: 1,
assetId: {},
rpc: ["https://mock.mumbai.rpc"],
rpc: ["https://polygon-mumbai.gateway.tenderly.co "],
},
{
name: "Unit Test Chain 2",
Expand Down Expand Up @@ -44,7 +44,7 @@ describe("maticjs:proof", () => {
fetchJsonStub = stub(SharedFns, "fetchJson");
fetchJsonStub.resolves(mockChainData);

posClient = await initMatic(false, mockChainData[0].rpc[0], mockChainData[1].rpc[0]);
posClient = await initMatic(true, mockChainData[0].rpc[0], mockChainData[1].rpc[0]);
posClientStub = stub(ClientFuncs, "initMatic").resolves(posClient);
exitBuildStub = stub(posClient.exitUtil, "buildPayloadForExit");
exitHashStub = stub(posClient.exitUtil, "getExitHash");
Expand Down

0 comments on commit 55d7664

Please sign in to comment.