or
or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up
Syntax | Example | Reference | |
---|---|---|---|
# Header | Header | 基本排版 | |
- Unordered List |
|
||
1. Ordered List |
|
||
- [ ] Todo List |
|
||
> Blockquote | Blockquote |
||
**Bold font** | Bold font | ||
*Italics font* | Italics font | ||
~~Strikethrough~~ | |||
19^th^ | 19th | ||
H~2~O | H2O | ||
++Inserted text++ | Inserted text | ||
==Marked text== | Marked text | ||
[link text](https:// "title") | Link | ||
![image alt](https:// "title") | Image | ||
`Code` | Code |
在筆記中貼入程式碼 | |
```javascript var i = 0; ``` |
|
||
:smile: | ![]() |
Emoji list | |
{%youtube youtube_id %} | Externals | ||
$L^aT_eX$ | LaTeX | ||
:::info This is a alert area. ::: |
This is a alert area. |
On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?
Please give us some advice and help us improve HackMD.
Syncing
xxxxxxxxxx
TTD override drill
Geth
You have two options for geth:
You can import the new genesis config by shutting down your node and reinitializing the datadir with
./go-ethereum/build/bin/geth init genesis.json --datadir "geth-datadir"
after which you can start your node again.Unfortunately the override flag was broken in the last release so for that you need to download the newest version of geth on the
merge-kiln-v2
branch, runmake
and then start the node with--override.terminaltotaldifficulty 20000000000000
.Nethermind
To override TTD in Nethermind we should start the node with:
--Merge.TerminalTotalDifficulty 20000000000000
Besu
The besu kiln release will be 22.1.2, and should include the new terminal difficulty, but if we need to override it or you are running a snapshot version there are a couple options:
override-genesis-config=["terminalTotalDifficulty=20000000000000"]
--override-genesis-config="terminalTotalDifficulty=20000000000000"
Lighthouse
Use
--terminal-total-difficulty-override=20000000000000
Nimbus
Use
--terminal-total-difficulty-override=20000000000000
Teku
Use
--Xnetwork-total-terminal-difficulty-override=20000000000000
on the latest buildIf you're not on the latest build, you can use use:
--network=~/merge-testnets/kiln/config.yaml
with the new configuration (pull the config repo)Prysm and Lodestar
You need to update the
config.yaml
file with the newTOTAL_TERMINAL_DIFFICULTY
in your configuration directory and restart your client