diff --git a/evm/contracts/core/24-host/IBCStore.sol b/evm/contracts/core/24-host/IBCStore.sol index c062046557..b074d40090 100644 --- a/evm/contracts/core/24-host/IBCStore.sol +++ b/evm/contracts/core/24-host/IBCStore.sol @@ -28,11 +28,11 @@ abstract contract IBCStore { mapping(uint32 => address) public channelOwner; // Sequences for identifier - bytes32 public constant nextClientSequencePath = + bytes32 constant nextClientSequencePath = keccak256("nextClientSequence"); - bytes32 public constant nextConnectionSequencePath = + bytes32 constant nextConnectionSequencePath = keccak256("nextConnectionSequence"); - bytes32 public constant nextChannelSequencePath = + bytes32 constant nextChannelSequencePath = keccak256("nextChannelSequence"); function getClient( diff --git a/evm/evm.nix b/evm/evm.nix index 65fae4e5ce..19d0cce41c 100644 --- a/evm/evm.nix +++ b/evm/evm.nix @@ -503,11 +503,7 @@ _: { cd $out jq --compact-output --slurp 'map(.abi) | add' \ - ${contracts}/out/IBCClient.sol/IBCClient.json \ - ${contracts}/out/IBCPacket.sol/IBCPacket.json \ - ${contracts}/out/IBCConnection.sol/IBCConnection.json \ - ${contracts}/out/OwnableIBCHandler.sol/OwnableIBCHandler.json \ - ${contracts}/out/IBCChannel.sol/IBCChannelHandshake.json > ibc-handler.json + ${contracts}/out/OwnableIBCHandler.sol/OwnableIBCHandler.json > ibc-handler.json jq --compact-output --slurp 'map(.abi) | add' \ ${contracts}/out/Relay.sol/IRelay.json \