Skip to content

Commit

Permalink
fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
doerfli committed Aug 15, 2022
1 parent 1bafc19 commit 2bb491e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/services/InstanceOperatorService.sol
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ contract InstanceOperatorService is
_treasury = TreasuryModule(_getContractAddress("Treasury"));

_transferOwnership(_msgSender());
_linkBundleModuleToBundeToken();
_linkBundleModuleToBundleToken();
_setDefaultAdminRole();
}

Expand All @@ -47,7 +47,7 @@ contract InstanceOperatorService is
access.setDefaultAdminRole(address(this));
}

function _linkBundleModuleToBundeToken() private {
function _linkBundleModuleToBundleToken() private {
BundleToken token = BundleToken(_getContractAddress("BundleToken"));
address bundleAddress = _getContractAddress("Bundle");
token.setBundleModule(bundleAddress);
Expand Down

0 comments on commit 2bb491e

Please sign in to comment.