Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix faq header #544

Merged
merged 3 commits into from
Apr 19, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/getting-started/timelords.md
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ This means that the ASIC cluster will always have an advantage but there are tim

While one can overclock the ASIC we very strongly recommend against doing such. Overclocking the ASICs will lead to diminishing longevity of the machine and only provides a minor increase in performance making it inefficient to overclock an ASIC.

## What Voltage Should I Use for an ASIC Timelord?
### What Voltage Should I Use for an ASIC Timelord?

It is highly recommend to use the default `0.88` voltage.

Expand Down
8 changes: 4 additions & 4 deletions docs/troubleshooting/timelords.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ Make sure to set your logs to INFO for the below commands to work.
To do so run: `chia configure --log-level INFO`
:::

The below commands are for use with linux OS.
The `tail` command only pulls new information as it is added to the log files allowing one to see new information as it is added.
The below commands are for use with linux OS.
The `tail` command only pulls new information as it is added to the log files allowing one to see new information as it is added.
The `cat` command pulls all current data from the log files providing a snapshot of where it was and is currently.

The matched strings are missing the first letter (E or S) intentionally.
This is due to the two instances of each log, for example the log where others create the proof of time has the string "Not skipping" while the log where your machine creates the PoT has the string "Skipping".

Continuous:
Continuous:
`tail -F ~/.chia/mainnet/log/debug.log | grep "stimated"` : running output of the current estimated IPS as seen by the network (note this will be lower than the IPS reported by the ASIC software).
`tail -F ~/.chia/mainnet/log/debug.log | grep "kipping"` : running output of peak heights being added to the node. If a height is skipped than very likely your timelord created the PoT, if the height is not skipped then a different timelord created the PoT.

Static:
Static:
`cat ~/.chia/mainnet/log/debug.log | grep "stimated"` : static output of the current estimated IPS as seen by the network (note this will be lower than the IPS reported by the ASIC software).
`cat ~/.chia/mainnet/log/debug.log | grep "kipping"` : statis output of peak heights added to the node. If a height is skipped than very likely your timelord created the PoT, if the height is not skipped then a different timelord created the PoT.

Expand Down
Loading