# 帮助

## 1. 为什么我的节点没有同步到最新的块？

Seele的节点需要连接到全部4个片的节点才能处理所有跨片交易。如果节点缺少某个片的节点，该节点将不能验证和缺少的片相关的跨片交易，使同步停止。检查节点所连接的对等节点，可以用client的`./client p2p peersinfo`的命令。

## 2. 如何确认挖到了一块？

在SeeleScan上输入账户查看账户余额。 或用client命令`./client getbalance --account (your account) -a ip:port`来检查余额是否在增长。更多信息参考挖矿教程。

## 3. 跨片交易需要多久完成？

正常在20-30分钟之间。

## 4. Seele是否支持跨片合约？

Seele只支持同片合约。

## 5. 区块链数据存在哪里？

`~/.seele`

## 6. 苹果电脑上运行节点时出现的“too many open files”的错误？

错误含义：Mac允许的 “进程最多打开文档数量” 不足。 在mac terminal里打`launchctl limit maxfiles`。返回的结果应该是maxfiles 256 unlimited。其中256是软限制，unlimited是硬限制。 用

```bash
sudo launchctl limit maxfiles 65536 200000
```

来更改两个限制。再使用`launchctl limit maxfiles`验证返回的结果应为maxfiles 65536 200000。

## 7. 使用curl来测试RPC端口时出现的“invalid content type, only application/json is supported”错误？

在curl后加-H "Content-Type: application/json"。


---

# 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://seeletech.gitbook.io/wiki/cn/bang-zhu.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.
