Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alistair-singh committed Dec 11, 2023
1 parent 7c59620 commit fa311d4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions parachain/primitives/router/src/outbound/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ impl<UniversalLocation, EthereumNetwork, OutboundQueue, AgentHashedDescription,
};

// filter out message
if !ExportFilter::contains(&dest, &outbound_message) {
log::error!(target: "xcm::ethereum_blob_exporter", "unroutable due to being filtered. '{local_sub_location:?}'");
if !ExportFilter::contains(&local_sub, &outbound_message) {
log::error!(target: "xcm::ethereum_blob_exporter", "unroutable due to being filtered. '{local_sub:?}'");
return Err(SendError::Unroutable)
}

Expand Down

0 comments on commit fa311d4

Please sign in to comment.