Skip to content

Commit

Permalink
chore: rebase develop
Browse files Browse the repository at this point in the history
  • Loading branch information
mrshiposha committed Nov 22, 2023
1 parent 9b5f43f commit 6295668
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 25 deletions.
48 changes: 24 additions & 24 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion pallets/foreign-assets/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,11 @@ impl<T: Config> TransactAsset for Pallet<T> {

fn check_out(_dest: &MultiLocation, _what: &MultiAsset, _context: &XcmContext) {}

fn deposit_asset(what: &MultiAsset, to: &MultiLocation, _context: &XcmContext) -> XcmResult {
fn deposit_asset(
what: &MultiAsset,
to: &MultiLocation,
_context: Option<&XcmContext>,
) -> XcmResult {
let to = T::LocationToAccountId::convert_location(to)
.ok_or(XcmExecutorError::AccountIdConversionFailed)?;

Expand Down

0 comments on commit 6295668

Please sign in to comment.