配置私链
在geth.exe
同目录下创建个文件夹,名字随意,我的叫sloweth
在sloweth
文件夹下创建一个名为genesis.json
的配置文件
配置文件的内容为
{
"config":{
"chainId": 666
},
"difficulty": "0x20000",
"gasLimit": "0x2fefd8",
"alloc":{}
}
到这里简单的私链就配置好了。
初始化
在geth.exe
同目录下打开命令行窗口
输入下面的语句
geth --datadir sloweth init sloweth/genesis.json
回车就能初始化私链
初始化完成后sloweth
文件夹下会生成geth
和keystore
两个文件夹
它们保存着私链的数据。