@@ -4,7 +4,7 @@ const IBCChannelHandshake = artifacts.require("IBCChannelHandshake");
44const IBCChannelPacketSendRecv = artifacts . require ( "IBCChannelPacketSendRecv" ) ;
55const IBCChannelPacketTimeout = artifacts . require ( "IBCChannelPacketTimeout" ) ;
66const IBCChannelUpgradeInitTryAck = artifacts . require ( "IBCChannelUpgradeInitTryAck" ) ;
7- const IBCChannelUpgradeConfirmTimeoutCancel = artifacts . require ( "IBCChannelUpgradeConfirmTimeoutCancel " ) ;
7+ const IBCChannelUpgradeConfirmOpenTimeoutCancel = artifacts . require ( "IBCChannelUpgradeConfirmOpenTimeoutCancel " ) ;
88const IBCHandler = artifacts . require ( "OwnableIBCHandler" ) ;
99const ERC20Token = artifacts . require ( "ERC20Token" ) ;
1010const ICS20TransferBank = artifacts . require ( "ICS20TransferBank" ) ;
@@ -18,15 +18,15 @@ module.exports = async function (deployer) {
1818 await deployer . deploy ( IBCChannelPacketSendRecv ) ;
1919 await deployer . deploy ( IBCChannelPacketTimeout ) ;
2020 await deployer . deploy ( IBCChannelUpgradeInitTryAck ) ;
21- await deployer . deploy ( IBCChannelUpgradeConfirmTimeoutCancel ) ;
21+ await deployer . deploy ( IBCChannelUpgradeConfirmOpenTimeoutCancel ) ;
2222 await deployer . deploy ( IBCHandler ,
2323 IBCClient . address ,
2424 IBCConnection . address ,
2525 IBCChannelHandshake . address ,
2626 IBCChannelPacketSendRecv . address ,
2727 IBCChannelPacketTimeout . address ,
2828 IBCChannelUpgradeInitTryAck . address ,
29- IBCChannelUpgradeConfirmTimeoutCancel . address ,
29+ IBCChannelUpgradeConfirmOpenTimeoutCancel . address ,
3030 ) ;
3131
3232 await deployer . deploy ( ParliaClient , IBCHandler . address ) ;
0 commit comments