Внести вклад
Информация об отладке
Шаги для начала отладки
Пример launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Prime",
"type": "go",
"request": "launch",
"mode": "exec",
"program": "${workspaceRoot}/build/bin/quai",
"env": {},
"args": [
"--ws",
"--http",
"--mine",
"--miner.threads=4",
"--miner.etherbase",
"0x00114a47a5d39ea2022dd4d864cb62cfd16879fc",
"--syncmode",
"full",
"--http.port",
"8546",
"--ws.port",
"8547",
"--port",
"30303",
"--allow-insecure-unlock",
"--verbosity",
"4",
],
"showLog": true,
},
]
}
Last updated