Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
kariy committed Oct 16, 2024
1 parent b45582c commit 8e9a50e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion crates/katana/rpc/rpc/tests/messaging.rs
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,14 @@ async fn estimate_message_fee() -> Result<()> {
from_address: from_address.try_into()?,
};

let _ = provider.estimate_message_fee(msg, BlockId::Tag(BlockTag::Pending)).await?;
let result = provider.estimate_message_fee(msg, BlockId::Tag(BlockTag::Pending)).await;

match result {
Ok(_) => {}
Err(e) => {
dbg!(e);
}
}

Ok(())
}

0 comments on commit 8e9a50e

Please sign in to comment.