minimize donations by default
authoralexhz <balthazar@yandex.ru>
Sat, 9 Mar 2013 13:12:06 +0000 (13:12 +0000)
committeralexhz <balthazar@yandex.ru>
Sat, 9 Mar 2013 13:12:06 +0000 (13:12 +0000)
p2pool/main.py

index 47ffd4f..cbab4d7 100644 (file)
@@ -379,8 +379,8 @@ def run():
         help='call getauxblock on this url to get work for merged mining (example: http://ncuser:ncpass@127.0.0.1:10332/)',
         type=str, action='append', default=[], dest='merged_urls')
     parser.add_argument('--give-author', metavar='DONATION_PERCENTAGE',
-        help='donate this percentage of work towards the development of p2pool (default: 1.0)',
-        type=float, action='store', default=1.0, dest='donation_percentage')
+        help='donate this percentage of work towards the development of p2pool (default: 0.0)',
+        type=float, action='store', default=0.0, dest='donation_percentage')
     parser.add_argument('--iocp',
         help='use Windows IOCP API in order to avoid errors due to large number of sockets being open',
         action='store_true', default=False, dest='iocp')