Skip to content

Commit

Permalink
Fix possible hard error warning
Browse files Browse the repository at this point in the history
  • Loading branch information
aleasims committed Dec 2, 2024
1 parent 8b9d1ac commit b99f955
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/base_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,11 @@ impl BaseClient {

log::debug!("token transfer msg: {:?}", msg);

self.send_msg_sync(msg, "token transfer").await?;
self.send_msg_sync::<_, cosmrs::proto::cosmos::bank::v1beta1::MsgSendResponse>(
msg,
"token transfer",
)
.await?;

Ok(())
}
Expand Down

0 comments on commit b99f955

Please sign in to comment.