Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
fixed fee issue
Browse files Browse the repository at this point in the history
  • Loading branch information
alistair-singh committed Nov 16, 2023
1 parent ef5c615 commit 325c816
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ fn send_token_to_penpal() {
chain_id: CHAIN_ID,
command: Command::SendToken {
token: WETH.into(),
destination: Destination::ForeignAccountId32 { para_id: 2000, id: AssetHubRococoReceiver::get().into() },
destination: Destination::ForeignAccountId32 { para_id: 2000, id: PenpalAReceiver::get().into() },
amount: 1_000_000_000,
},
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ parameter_types! {
pub const CreateAssetCall: [u8;2] = [53, 0];
pub const CreateAssetExecutionFee: u128 = 2_000_000_000;
pub const CreateAssetDeposit: u128 = (UNITS / 10) + EXISTENTIAL_DEPOSIT;
pub const SendTokenExecutionFee: u128 = 2_000_000_000;
pub const SendTokenExecutionFee: u128 = 4_000_000_000;
}

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

0 comments on commit 325c816

Please sign in to comment.