Skip to content

Commit

Permalink
chore: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jahabeebs committed Nov 29, 2024
1 parent 6ae5939 commit e60c117
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
1 change: 1 addition & 0 deletions apps/agent/config.example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ blockNumberService:
processor:
msBetweenChecks: 1000 # Interval between periodic checks (ms)
accountingModules:
requestModule: "0x1234567890123456789012345678901234567890" # Address of the Request module
responseModule: "0x1234567890123456789012345678901234567890" # Address of the Response module
escalationModule: "0x1234567890123456789012345678901234567890" # Address of the Escalation module

Expand Down
6 changes: 1 addition & 5 deletions apps/agent/test/e2e/utils/prophet-e2e-scaffold/eboCore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -267,18 +267,14 @@ export async function setUpProphet(input: SetUpProphetInput) {
anvilClient,
);

if (!deployedContracts["HorizonAccountingExtension"]) {
throw new Error("HorizonAccountingExtension contract not found in deployed contracts");
}

// Stake GRT and set operator authorization only for the service provider
await stakeGrtWithProvision(
serviceProvider,
otherAccounts,
{
grt: grtAddress,
horizonStaking: horizonStakingAddress,
horizonAccountingExtension: deployedContracts["HorizonAccountingExtension"],
horizonAccountingExtension: deployedContracts["HorizonAccountingExtension"] as Address,
},
bondAmount,
anvilClient,
Expand Down

0 comments on commit e60c117

Please sign in to comment.