# 6. 接单过程中总出现拒绝信息

首先，可以通过以下命令行查看订单是否被拒绝：

```
lotus-miner stroage-deals list -v| grep <deal_cid>
```

如果订单被拒绝，可以通过如下图所示，在存储提供商的config文件里的`[Dealmaking]`下查看接单的过滤设置是否有误。

```
[Dealmaking]
  Filter = "/home/test/dealfilter.pl"
```

你可以在`dealfilter.pl` 下的 `denylist` 中查看被过滤的地址并对其进行添加/删除。

```
#!/usr/bin/perl

use warnings;
use strict;
use 5.014;

# Uncomment this to lock down the miner entirely
# print "Miner currently upgrading - BACK SOON";
# exit 1;

# A list of wallets you do not want to deal with
# For example this enty will prevent a shady ribasushi
# character from storing things on your miner
my $denylist = { map {( $_ => 1 )} qw(
  f3qpseg3qlpckug75qqas6jsce4up6kg5bo4yaefwnxo4fwx2n5f7jpkkrzy37jxnshkd6mazxso2rxfoax111
)};

use JSON::PP 'decode_json';

my $deal = eval { decode_json(do{ local $/; <> }) };
if( ! defined $deal ) {
  print "Deal proposal JSON parsing failed: $@";
  exit 1;
}

if( $denylist->{$deal->{Proposal}{Client}} ) {
  print "Deals from client wallet $deal->{Proposal}{Client} are not welcome";
  exit 1;
}

exit 0;
```

如遇任何问题，请在 [FilSwan Discord](https://filswan.com/discord) 频道联系我们。


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs-cn.filswan.com/swan-provider/chang-jian-wen-ti/6.-jie-dan-guo-cheng-zhong-zong-chu-xian-ju-jue-xin-xi.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
