Skip to content

Commit

Permalink
fix(release-test): fix gas limit for calculate reply test (#4139)
Browse files Browse the repository at this point in the history
  • Loading branch information
breathx authored Aug 11, 2024
1 parent 641e3bc commit 432d606
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pallets/gear/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ fn calculate_reply_for_handle_works() {

// Out of gas panic case.
let res =
Gear::calculate_reply_for_handle(USER_1, ping_pong, b"PING".to_vec(), 750_000_000, 0)
Gear::calculate_reply_for_handle(USER_1, ping_pong, b"PING".to_vec(), 600_000_000, 0)
.expect("Failed to query reply");

assert_eq!(
Expand Down

0 comments on commit 432d606

Please sign in to comment.