Skip to content

Commit

Permalink
Fix incorrect proto type in batch confirms
Browse files Browse the repository at this point in the history
  • Loading branch information
EricBolten committed Nov 11, 2022
1 parent a89d067 commit 4ecac09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions orchestrator/cosmos_gravity/src/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ pub async fn batch_tx_confirmation_messages(
ethereum_signer: format_eth_address(ethereum_address),
signature: signature.into(),
};
let msg = proto::MsgSubmitEthereumEvent {
let msg = proto::MsgSubmitEthereumTxConfirmation {
signer: cosmos_address.to_string(),
event: confirmation.to_any(),
confirmation: confirmation.to_any(),
};
let msg = Msg::new("/gravity.v1.MsgSubmitEthereumTxConfirmation", msg);
msgs.push(msg);
Expand Down

0 comments on commit 4ecac09

Please sign in to comment.