Skip to content

Commit

Permalink
fix(messaging-contract): bump callback weight values
Browse files Browse the repository at this point in the history
  • Loading branch information
al3mart committed Mar 3, 2025
1 parent efc05b4 commit cf8fcd6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pop-api/integration-tests/contracts/messaging/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ mod messaging {
fee,
callback.then_some(
// See `api::ismp::OnGetResponse` impl below
Callback::to(0x57ad942b, Weight::from_parts(600_000_000, 150_000)),
Callback::to(0x57ad942b, Weight::from_parts(900_000_000, 150_000)),
),
)?;
Ok(())
Expand All @@ -76,7 +76,7 @@ mod messaging {
fee,
callback.then_some(
// See `api::ismp::OnPostResponse` impl below
Callback::to(0xcfb0a1d2, Weight::from_parts(600_000_000, 150_000)),
Callback::to(0xcfb0a1d2, Weight::from_parts(800_000_000, 150_000)),
),
)?;
Ok(())
Expand All @@ -100,7 +100,7 @@ mod messaging {
timeout,
callback.then_some(
// See api::xcm::OnResponse impl below
Callback::to(0x641b0b03, Weight::from_parts(600_000_000, 200_000)),
Callback::to(0x641b0b03, Weight::from_parts(800_000_000, 200_000)),
),
)
}
Expand Down

0 comments on commit cf8fcd6

Please sign in to comment.