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

Deposit fee to beneficiary #137

Closed
wants to merge 11 commits into from
Prev Previous commit
Next Next commit
Deposit only asset to beneficiary on destination chain
  • Loading branch information
yrong committed Apr 15, 2024
commit 7e0ddaa4fbd8adbb61ea02a0e2f9b1bab8445a65
4 changes: 2 additions & 2 deletions bridges/snowbridge/primitives/router/src/inbound/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -278,8 +278,8 @@ where
xcm: vec![
// Buy execution on target.
BuyExecution { fees: dest_para_fee_asset, weight_limit: Unlimited },
// Deposit both asset and fees to beneficiary.
DepositAsset { assets: Wild(All), beneficiary },
// Deposit asset to beneficiary.
DepositAsset { assets: Definite(asset.into()), beneficiary },
// Forward message id to destination parachain.
SetTopic(message_id.into()),
]
Expand Down
Loading