Mining

Eth地址不能用於挖礦

  • July 7, 2017

我正在嘗試從我的 linux 中探勘,但是當我執行以下命令時:

ethminer -F http://ethereumpool.co/?miner=4@ERroYPhmyUFMgPNRJEDNBlaBlaBla@Optional

我收到錯誤

JSON_PARSE_ERROR: The JSON-Object is not JSON-Valid:  Invalid Ethereum address length

但是,當使用十六進制地址進行操作時:

ethminer -F http://ethereumpool.co/?miner=10@0x54e8efbd6138011efe9b028e489f6a0bc650e451@OptionalRigName

我沒有收到錯誤,但是 0xEtc 是一個虛擬值。

如何找出我的 ETC 錢包地址的十六進制值?還是我錯誤地接近這個?

我按照https://ethereumpool.co/how/中的說明進行操作

預設情況下,該地址包含在儲存與該地址對應的私鑰的帳戶文件的名稱中。

如果您沒有乙太坊客戶端,請下載geth(因為它是目前最常用的並執行以下命令:

mkdir myMiningDir
geth --datadir myMiningDir account new
# Enter and reenter the passphrase
cd keystore
ls 
# You should see your next account as a file with the name <account address>--<timestamp>

確保寫下/記住該帳戶的密碼,否則您將無法從其餘額中花費任何乙太幣。

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