美文网首页
2018-11-22 Debug以太坊go-ethereum实战

2018-11-22 Debug以太坊go-ethereum实战

作者: oracle3 | 来源:发表于2018-11-22 15:31 被阅读0次

    参考文章:《Debug以太坊go-ethereum实战》,实践中有些问题,这里记录一下

    1、下载goland ide

    打开https://www.jetbrains.com/go/download/#section=windows下载windows版本,安装后使用《Goland激活码》提供的激活码

    2、打开工程go-ethereum

    goland启动后直接打开工程,定位到go-ethereum代码目录,打开

    3、初始化工作

    大部分参考文档《Debug以太坊go-ethereum实战

    3.1 下载代码并编译

    参考:Installation instructions for Windows

    git clone https://github.com/ethereum/go-ethereum.git

    go install -v ./cmd/...

    然后 where geth确保能够找到geth,并且geth是自己编译的(路径里面包含%GOPATH%\bin)

    3.2 自定义genesis.json

    {

      "config": {

            "chainId": 1314,

            "homesteadBlock": 0,

            "eip155Block": 0,

            "eip158Block": 0

        },

        "coinbase" : "0x0000000000000000000000000000000000000000",

        "difficulty" : "0x200",

        "extraData" : "",

        "gasLimit" : "0xffffffff",

        "nonce" : "0x0000000000000042",

        "mixhash" : "0x0000000000000000000000000000000000000000000000000000000000000000",

        "parentHash" : "0x0000000000000000000000000000000000000000000000000000000000000000",

        "timestamp" : "0x00",

        "alloc": { }

    }

    3.3 初始化节点

    打开命令行执行

    geth --datadir geth-data0 init genesis.json

    对于我本机geth-data0目录位于d:/temp/go-ethereum/geth-data0

    3.4 启动节点

    继续执行

    geth --datadir "geth-data0" --networkid 1314 --nodiscover --rpc --rpcport 6001 --port 30001 --ipcpath geth1.ipc console

    3.5 其他操作

    再打开一个命令行,执行

    geth attach ipc:\\.\pipe\geth1.ipc

    我用的是windows,如果是linux需要用类似:

    geth attach ./geth-data0/geth1.ipc

    创建两个账号:

    personal.newAccount("123")

    personal.newAccount("123")

    查看账号信息:

    eth.accounts

    显示:

    ["0xc691f65382b4c915efc2852b5e7dace798fa28b1", "0xcb2105744928a2b8f93391409321b8f51e87537f"]

    配置coinbase

    miner.setEtherbase(eth.accounts[0])

    挖矿

    miner.start()

    可以在上个终端里面执行,这样就不需要停止了

    查看账号信息:

    eth.getBalance(eth.accounts[0])

    这个时候一个有以太币了

    转账:

    personal.unlockAccount(eth.accounts[0])

    eth.sendTransaction({from:eth.accounts[0],to:eth.accounts[1],value:web3.toWei(10,"ether")})

    如果还在继续挖矿,查询

    eth.getBalance(eth.accounts[1])

    会有转账的10个以太币

    4、goland的配置

    先使用exit退出3.4,3.5中geth的执行,避免影响这里的配置

    点击菜单的run,edit configurations,左上角的+号,选择go build,配置信息如下:

    package path:

    github.com/ethereum/go-ethereum/cmd/geth

    program arguments中同3.4的参数

    --datadir "d:/temp/go-ethereum/geth-data0" --networkid 1314 --nodiscover --rpc --rpcport 6001 --port 30001 --ipcpath geth1.ipc console

    选择ok后退出这个界面

    点击debug按钮启动程序调试,启动成功后在console窗口输入:

    eth.accounts

    确保看到的是两个自己刚才创建的账户,如果是[],说明--data设置错误

    打开/internal/ethapi/api.go在(s *PublicTransactionPoolAPI) SendTransaction方法上打上断点(L1194)【注意:打上断点以后,直接debug你会发现程序并没有在断点出停。只有当你在控制台发送一条交易或者本地通过rpc发交易才会触发程序在断点处停掉】

    在console窗口输入

    personal.unlockAccount(eth.accounts[0])

    eth.sendTransaction({from:eth.accounts[0],to:eth.accounts[1],value:web3.toWei(10,"ether")})

    回车后就可以发现程序断下来了,左下角的debug窗口可以单步执行,并查看变量值,只是这个变量值看不明白

    相关文章

      网友评论

          本文标题:2018-11-22 Debug以太坊go-ethereum实战

          本文链接:https://www.haomeiwen.com/subject/bhylqqtx.html