Fix #2334: Specify seal options to disable with co-located storage worker

This commit is contained in:
Hector Sanjuan 2020-08-31 21:18:50 +02:00
parent fe52c47570
commit a153e1d586

View File

@ -82,7 +82,15 @@ Worker 1, host othercomputer
You can also run the **Lotus Worker** on the same machine as your **Lotus Miner**, so you can manually manage the process priority.
To do so you have to first __disable all seal task types__ in the miner config. This is important to prevent conflicts between the two processes.
To do so you have to first __disable all seal task types__ in the miner config. This is important to prevent conflicts between the two processes:
```toml
[Storage]
AllowPreCommit1 = false
AllowPreCommit2 = false
AllowCommit = false
AllowUnseal = false
```
You can then run the miner on your local-loopback interface;