diff --git a/runtime/common/src/xcm_config.rs b/runtime/common/src/xcm_config.rs index b457a373..f2d00ea0 100644 --- a/runtime/common/src/xcm_config.rs +++ b/runtime/common/src/xcm_config.rs @@ -54,13 +54,14 @@ impl ShouldExecute for DenyReserveTransferToRelayChain { return Err(()); // Deny } - // allow reserve transfers to arrive from relay chain + // An unexpected reserve transfer has arrived from the Relay Chain. Generally, `IsReserve` + // should not allow this, but we just log it here. if matches!(origin, MultiLocation { parents: 1, interior: Here }) && message.0.iter().any(|inst| matches!(inst, ReserveAssetDeposited { .. })) { log::warn!( target: "xcm::barrier", - "Unexpected ReserveAssetDeposited from the relay chain", + "Unexpected ReserveAssetDeposited from the Relay Chain", ); } // Permit everything else