Terminology
poclbm 輸出是什麼意思?
我有 3 個使用 poclbm 探勘的顯卡(沒有外部池),它們都有幾乎相同的輸出:
MYSERVER:MYPORT [141.642 MH/s (~0 MH/s)] [Rej: 0/0 (0.00%)]
“~0 MH/s”是什麼意思?
從poclbm 原始碼,Switch.py 第 219 行:
say_quiet('%s[%.03f MH/s (~%d MH/s)] [Rej: %d/%d (%.02f%%)]', (if_else(verbose, miner.id()+' ', '') , rate, round(estimated_rate), rejected_shares, total_shares, float(rejected_shares) * 100 / total_shares_estimator))
是
estimated_rate
。你問這是怎麼
estimated_rate
發現的?我嘗試查看原始碼,但這並沒有真正弄清楚。
self.estimated_rate = Decimal(new_accept) * (targetQ) / min(int(now - self.start_time), self.options.estimate) / 1000 self.estimated_rate = Decimal(self.estimated_rate) / 1000
我最終在 bitcointalk 上找到了這個討論。它指出,估計費率取決於送出給池的股票數量。如果您不使用游泳池,我不知道它應該顯示什麼。