btcpool-ABANDONED
btcpool-ABANDONED copied to clipboard
backend of pool.btc.com
Currently, the new Share structure of `deveth` can already save IPv6 addresses. However, the `sserver` is still only used the IPv4 protocol stack. The code needs some changes to listen...
You know, this refers to the 32-bit unix timestamp overflow problem. [Wikipedia](https://en.wikipedia.org/wiki/Year_2038_problem) Although 64-bit timestamps are used in `deveth`'s new Share structure, some places in the project are still using...
https://github.com/btccom/btcpool/blob/c656fd7a08927abb7300f7af86e458be60929a4e/src/ShareLogParser.inl#L950 该字段采用以下函数进行哈希速率运算,只适用于比特币及pdiff与其相同的DCR,并不适用于以太坊。 ```cpp // we use G, so never overflow inline double share2HashrateG(uint64_t share, uint32_t timeDiff) { // G: 1000000000.0 // 2^32: 4294967296.0 return share * (4294967296.0 / 1000000000.0 /...
@SwimmingTiger 使用了poolwatcher proxy上游矿池的拒绝率100%,这个情况是配置有问题吗?连接上游矿池默认和最小难度设置163840,下游sserver的难度配置没变,extra_nonce_2是4。几乎上游矿池返回的都是low diff错误,不管是1台还是多台s9矿机,都是100%拒绝率
Thank you very muvh for sharing this great software i have several questions if i want to make a front-end for this pool can you please point me to the...
if (isValidSolution && scaledShareDiff / sjob->difficulty_ >= 1024) { 这个条件应该改成if (isValidSolution && scaledShareDiff *1024 >= sjob->difficulty_ ) {
#default difficulty #max difficulty #min difficulty default_difficulty = "65536"; max_difficulty = "40000000000"; min_difficulty = "2"; nodebridge改成了v0.25.2 nbminer是26.2版本 正式网,这个难度太低了
ckb的jobmaker在提取kafka中的消息(nodebridge生产的)时候,经常会卡顿500ms左右,大概几秒就会出一次,这会导致矿机接收新的job也会有延时。