Go-Ethereum

使用 geth 檢索 ETC 餘額

  • June 9, 2017

我正在努力使用 geth 檢索我目前的 ETC 餘額。

對於採礦,我正在執行:

ethminer -F http://etc-eu1.nanopool.org:18888/<ADDRESS>/<NAME> -G

將區塊鏈與 geth 同步:

geth --rpc

第一個 ~0.2 ETC 已從 Nanopool 轉移,我可以在交易歷史中看到。

geth attach
> eth.getBalance(eth.accounts[0])
> 0

我猜這實際上返回的是 ETH 餘額而不是 ETC 餘額,但我不知道如何檢索後者並隨後將 ETC 轉移到其中一個交易所。

任何幫助深表感謝。

如果你想執行一個 ETC 節點,並在本地檢查 ETC 賬戶的餘額,你需要 Geth 的 ETC 版本。

ETC Geth: https ://github.com/ethereumproject/go-ethereum/releases

ETH Geth: https ://github.com/ethereum/go-ethereum/releases

引用自:https://ethereum.stackexchange.com/questions/17596