Altcoin

山寨幣中沒有送出區塊?

  • April 10, 2016

我試圖弄清楚我將如何在許多山寨幣中送出一個塊。我最初在 bbqcoin 中發現了這個問題,但後來在許多其他人中發現了它。我在 Ubuntu 12.04.4 上從 gihub 源安裝了 bbqcoin(和其他)

root@ubuntu-hp:~# bbqcoind help
addmultisigaddress <nrequired> <'["key","key"]'> [account]
backupwallet <destination>
dumpprivkey <bbqcoinaddress>
encryptwallet <passphrase>
getaccount <bbqcoinaddress>
getaccountaddress <account>
getaddressesbyaccount <account>
getbalance [account] [minconf=1]
getblock <hash> [decompositions]
getblockcount
getblockhash <index>
getconnectioncount
getdifficulty
getgenerate
gethashespersec
getinfo
getmemorypool [data]
getmininginfo
getnetworkhashps [blocks]
getnewaddress [account]
getpeerinfo
getrawmempool
getreceivedbyaccount <account> [minconf=1]
getreceivedbyaddress <bbqcoinaddress> [minconf=1]
gettransaction <txid> [decompositions]
getwork [data]
getworkex [data, coinbase]
help [command]
importprivkey <bbqcoinprivkey> [label]
keypoolrefill
listaccounts [minconf=1]
listreceivedbyaccount [minconf=1] [includeempty=false]
listreceivedbyaddress [minconf=1] [includeempty=false]
listsinceblock [blockhash] [target-confirmations]
listtransactions [account] [count=10] [from=0]
move <fromaccount> <toaccount> <amount> [minconf=1] [comment]
sendfrom <fromaccount> <tobbqcoinaddress> <amount> [minconf=1] [comment] [comment-to]
sendmany <fromaccount> {address:amount,...} [minconf=1] [comment]
sendrawtx <hex string>
sendtoaddress <bbqcoinaddress> <amount> [comment] [comment-to]
setaccount <bbqcoinaddress> <account>
setgenerate <generate> [genproclimit]
setmininput <amount>
settxfee <amount>
signmessage <bbqcoinaddress> <message>
stop
validateaddress <bbqcoinaddress>
verifymessage <bbqcoinaddress> <signature> <message>

我能想到的最好的,最接近的應該是 sendrawtx .. 但這不可能,可以嗎?我在想此時我應該利用結帳功能,但很難說出每個硬幣的版本。

編輯:我發現許多硬幣都有這個問題,如下所述:https ://github.com/Crypto-Expert/stratum-mining/issues/72

所以看起來解決方案是自己建構它,有一個 hail-mary 解決方法可以解決問題,但沒有大量記錄。我發現你可以通過getblocktemplate送出一個塊的參考,<https://github.com/moopless/stratum-mining-litecoin/issues/48>

嘗試使用一些數據時出現 json 解析錯誤。有沒有人使用過 getblocktemplate 送出?

好的,花了一些時間,但我想通了!

似乎有很多在原始碼中沒有送出塊。不確定這是有意的(探勘優勢與新手)還是純粹的無能,但解決方案需要對原始碼進行最小的更改。

如果您遇到此問題,我發現這應該會有所幫助:https ://github.com/earthcoinproject/earthcoin/commit/0b862e499e05386e333563656f84e99bad1b0290

希望這可以幫助另一個沮喪的開發人員:)

引用自:https://bitcoin.stackexchange.com/questions/23761