Skip to content

Commit 64adcea

Browse files
committed
fix: change ibcHandler to mutable for flexibility in IBCKeeper contract
1 parent 56981f6 commit 64adcea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/IBCKeeper.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {IIBCHandler} from "@hyperledger-labs/yui-ibc-solidity/contracts/core/25-
55

66
// IBCKeeper keeps the contracts of IBC
77
abstract contract IBCKeeper {
8-
IIBCHandler internal immutable ibcHandler;
8+
IIBCHandler ibcHandler;
99

1010
constructor(IIBCHandler handler_) {
1111
ibcHandler = handler_;

0 commit comments

Comments
 (0)