fromData static method
Implementation
static MsgChannelOpenTry fromData(MsgChannelOpenTryDataArgs data) {
return MsgChannelOpenTry(
data.port_id!,
data.previous_Channel_Id!,
Channel.fromData(data.channel!),
data.counterparty_Version!,
data.proof_Init!,
Height.fromData(data.proof_Height!),
data.signer!);
}