Skip to content

Commit

Permalink
fixup! Merge branch 'grarco/masp-fees' (#3217)
Browse files Browse the repository at this point in the history
  • Loading branch information
brentstone committed May 21, 2024
1 parent 34b6f0d commit f6ca04e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/scripts/hermes.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.7.4-namada-beta9-rc2
1.8.2-namada-beta10-rc
13 changes: 10 additions & 3 deletions crates/tests/src/e2e/ibc_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -747,7 +747,9 @@ fn ibc_rate_limit() -> Result<()> {
&channel_id_a,
None,
// expect an error of the throughput limit
Some("Transaction was rejected by VPs"),
Some(
"Transfer exceeding the per-epoch throughput limit is not allowed",
),
false,
)?;

Expand Down Expand Up @@ -1017,10 +1019,15 @@ fn wait_for_packet_relay(
// Check no pending packet
if hermes
.exp_string(
"\"dst\":{\"unreceived_acks\":[],\"unreceived_packets\":[]},\"\
src\":{\"unreceived_acks\":[],\"unreceived_packets\":[]}",
"\"dst\":{\"unreceived_acks\":[],\"unreceived_packets\":[]},",
)
.is_ok()
&& hermes
.exp_string(
"\"src\":{\"unreceived_acks\":[],\"unreceived_packets\":\
[]}",
)
.is_ok()
{
return Ok(());
}
Expand Down

0 comments on commit f6ca04e

Please sign in to comment.