Skip to content

Commit 6b6c42b

Browse files
authored
Merge pull request #2421 from subspace/transporter_pays_fees
ensure user pays for transporting funds
2 parents fe1d4cd + 6f1d894 commit 6b6c42b

File tree

1 file changed

+1
-1
lines changed
  • domains/pallets/transporter/src

1 file changed

+1
-1
lines changed

domains/pallets/transporter/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ mod pallet {
184184
/// Initiates transfer of funds from account on src_chain to account on dst_chain.
185185
/// Funds are burned on src_chain first and are minted on dst_chain using Messenger.
186186
#[pallet::call_index(0)]
187-
#[pallet::weight((T::WeightInfo::transfer(), Pays::No))]
187+
#[pallet::weight(T::WeightInfo::transfer())]
188188
pub fn transfer(
189189
origin: OriginFor<T>,
190190
dst_location: Location,

0 commit comments

Comments
 (0)