Skip to content

Commit

Permalink
Fix logger name
Browse files Browse the repository at this point in the history
  • Loading branch information
ltyu committed May 9, 2024
1 parent 854a14c commit f7514fd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/cuddly-trains-rescue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@hyperlane-xyz/sdk': minor
---

Add EvmIcaModule.create()
4 changes: 2 additions & 2 deletions typescript/sdk/src/core/EvmIcaModule.hardhat-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ describe('EvmIcaModule', async () => {

const { interchainAccountRouter, interchainAccountIsm } =
evmIcaModule.serialize();
expect(interchainAccountIsm).to.not.be.undefined;
expect(interchainAccountRouter).to.not.be.undefined;
expect(interchainAccountIsm).to.exist;
expect(interchainAccountRouter).to.exist;
});
});
});
2 changes: 1 addition & 1 deletion typescript/sdk/src/core/EvmIcaModule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class EvmIcaModule extends HyperlaneModule<
InterchainAccountConfig,
HyperlaneContracts<InterchainAccountFactories>
> {
protected logger = rootLogger.child({ module: 'EvmIsmModule' });
protected logger = rootLogger.child({ module: 'EvmIcaModule' });

protected constructor(
protected readonly multiProvider: MultiProvider,
Expand Down

0 comments on commit f7514fd

Please sign in to comment.