Skip to content

Commit

Permalink
fix: change chain name function to public (#206)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahramy authored Nov 10, 2024
1 parent b5d0b7b commit 271f174
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/utils/InterchainAddressTracker.sol
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ contract InterchainAddressTracker is IInterchainAddressTracker {
/**
* @dev Gets the name of the chain this is deployed at
*/
function chainName() external view returns (string memory chainName_) {
function chainName() public view returns (string memory chainName_) {
chainName_ = StringStorage.get(_CHAIN_NAME_SLOT);
}

Expand Down

0 comments on commit 271f174

Please sign in to comment.