Skip to content

Commit

Permalink
Fix #2334: Specify seal options to disable with co-located storage wo…
Browse files Browse the repository at this point in the history
…rker
  • Loading branch information
hsanjuan committed Sep 3, 2020
1 parent fe52c47 commit a153e1d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion documentation/en/mining/lotus-seal-worker.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit a153e1d

Please sign in to comment.