From 53ba09eddb5fdb27e3564a798956ec0150246470 Mon Sep 17 00:00:00 2001 From: alexhz Date: Sat, 9 Mar 2013 13:12:06 +0000 Subject: [PATCH] minimize donations by default --- p2pool/main.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/p2pool/main.py b/p2pool/main.py index 47ffd4f..cbab4d7 100644 --- a/p2pool/main.py +++ b/p2pool/main.py @@ -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') -- 1.7.1