Skip to content
This repository was archived by the owner on Aug 15, 2025. It is now read-only.

Commit 325c816

Browse files
fixed fee issue
1 parent ef5c615 commit 325c816

File tree

2 files changed

+2
-2
lines changed
  • cumulus/parachains
    • integration-tests/emulated/tests/bridges/bridge-hub-rococo/src/tests
    • runtimes/bridge-hubs/bridge-hub-rococo/src

2 files changed

+2
-2
lines changed

cumulus/parachains/integration-tests/emulated/tests/bridges/bridge-hub-rococo/src/tests/snowbridge.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ fn send_token_to_penpal() {
282282
chain_id: CHAIN_ID,
283283
command: Command::SendToken {
284284
token: WETH.into(),
285-
destination: Destination::ForeignAccountId32 { para_id: 2000, id: AssetHubRococoReceiver::get().into() },
285+
destination: Destination::ForeignAccountId32 { para_id: 2000, id: PenpalAReceiver::get().into() },
286286
amount: 1_000_000_000,
287287
},
288288
});

cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ parameter_types! {
527527
pub const CreateAssetCall: [u8;2] = [53, 0];
528528
pub const CreateAssetExecutionFee: u128 = 2_000_000_000;
529529
pub const CreateAssetDeposit: u128 = (UNITS / 10) + EXISTENTIAL_DEPOSIT;
530-
pub const SendTokenExecutionFee: u128 = 2_000_000_000;
530+
pub const SendTokenExecutionFee: u128 = 4_000_000_000;
531531
}
532532

533533
#[cfg(feature = "runtime-benchmarks")]

0 commit comments

Comments
 (0)