block loss fix
authoralexhz <balthazar@yandex.ru>
Sat, 9 Mar 2013 20:52:09 +0000 (20:52 +0000)
committeralexhz <balthazar@yandex.ru>
Sat, 9 Mar 2013 20:52:09 +0000 (20:52 +0000)
p2pool/data.py

index 562fdba..a9bae81 100644 (file)
@@ -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 floor(coinbase_size / 1000.0) * minout
+                return math.floor(coinbase_size / 1000.0) * minout
 
             return 0