Skip to content

Commit

Permalink
chore: fix tests and types
Browse files Browse the repository at this point in the history
  • Loading branch information
tamtamchik committed Dec 10, 2024
1 parent 2c31ba1 commit e94cd96
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions globals.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ declare namespace NodeJS {
LOCAL_KERNEL_ADDRESS?: string;
LOCAL_LEGACY_ORACLE_ADDRESS?: string;
LOCAL_LIDO_ADDRESS?: string;
LOCAL_WSTETH_ADDRESS?: string;
LOCAL_NOR_ADDRESS?: string;
LOCAL_ORACLE_DAEMON_CONFIG_ADDRESS?: string;
LOCAL_ORACLE_REPORT_SANITY_CHECKER_ADDRESS?: string;
Expand All @@ -64,6 +65,7 @@ declare namespace NodeJS {
MAINNET_KERNEL_ADDRESS?: string;
MAINNET_LEGACY_ORACLE_ADDRESS?: string;
MAINNET_LIDO_ADDRESS?: string;
MAINNET_WSTETH_ADDRESS?: string;
MAINNET_NOR_ADDRESS?: string;
MAINNET_ORACLE_DAEMON_CONFIG_ADDRESS?: string;
MAINNET_ORACLE_REPORT_SANITY_CHECKER_ADDRESS?: string;
Expand Down
1 change: 1 addition & 0 deletions lib/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ async function getLocatorConfig(locatorAddress: string) {
"withdrawalVault",
"oracleDaemonConfig",
"accounting",
"wstETH",
] as (keyof LidoLocator.ConfigStruct)[];

const configPromises = addresses.map((name) => locator[name]());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ describe("OracleReportSanityChecker.sol:negative-rebase", () => {
postTokenRebaseReceiver: deployer.address,
oracleDaemonConfig: deployer.address,
accounting: await accounting.getAddress(),
wstETH: deployer.address,
},
]);

Expand Down

0 comments on commit e94cd96

Please sign in to comment.