Compile and Run
Last updated
Was this helpful?
Was this helpful?
[Eth]
SyncMode = "snap"
TrieCleanCacheRejournal= 300000000000
[Eth.Miner]
GasFloor = 0
GasCeil = 40000000
GasPrice = 1000000000
Recommit = 3000000000
Noverify = false
[Node]
InsecureUnlockAllowed = true
IPCPath = "geth.ipc"#!/bin/bash
set -e
# DXC_DIR the path of geth
DXC_DIR=/directory/of/geth
cd $DXC_DIR
# --datadir ./data Blockchain data storage directory
nohup ./geth --datadir ./data --config ./config.toml --verbosity 3 >>./data/system.log 2>&1 &$ /bin/bash start.sh