Skip to content

Commit ab44bf9

Browse files
committed
Merge branch 'sdk_bump' into fix/tx-priority-tx-matching
2 parents 8d929c0 + f45ec01 commit ab44bf9

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

integration-tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "runtime-integration-tests"
3-
version = "1.81.0"
3+
version = "1.81.1"
44
description = "Integration tests"
55
authors = ["GalacticCouncil"]
66
edition = "2021"

integration-tests/src/xcm.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -298,11 +298,11 @@ fn unified_event_context_should_be_cleared_when_error_happens_in_xcm_prepare() {
298298

299299
// Act
300300
Acala::execute_with(|| {
301-
//We make a big xcm so it results in error
302-
const ARRAY_REPEAT_VALUE: cumulus_primitives_core::Instruction<()> =
303-
cumulus_primitives_core::Instruction::RefundSurplus;
304-
let message: cumulus_primitives_core::Xcm<()> =
305-
cumulus_primitives_core::Xcm([ARRAY_REPEAT_VALUE; 10000].to_vec());
301+
let message = Xcm(vec![Transact {
302+
fallback_max_weight: None,
303+
origin_kind: OriginKind::SovereignAccount,
304+
call: vec![0xff].into(),
305+
}]);
306306

307307
let dest_hydradx = Location::new(1, [cumulus_primitives_core::Junction::Parachain(HYDRA_PARA_ID)]);
308308

0 commit comments

Comments
 (0)