From: alexhz Date: Sat, 9 Mar 2013 21:56:09 +0000 (+0000) Subject: block-losing issue fix X-Git-Url: https://git.novaco.in/?p=p2pool.git;a=commitdiff_plain;h=33adb7a1c40d5d03e1ee222f50be9fe3fbef5349 block-losing issue fix --- diff --git a/p2pool/data.py b/p2pool/data.py index a9bae81..4e853d4 100644 --- a/p2pool/data.py +++ b/p2pool/data.py @@ -5,7 +5,7 @@ import os import random import sys import time -import math +from math import ceil, floor from twisted.python import log @@ -120,7 +120,7 @@ class Share(object): # if coinbase size is greater than 1000 bytes, it should pay fee (0.01 per 1000 bytes) if coinbase_size > 1000: - return math.floor(coinbase_size / 1000.0) * minout + return ceil(coinbase_size / 1000.0) * minout return 0