From: alexhz Date: Sat, 9 Mar 2013 13:12:06 +0000 (+0000) Subject: minimize donations by default X-Git-Url: https://git.novaco.in/?p=p2pool.git;a=commitdiff_plain;h=53ba09eddb5fdb27e3564a798956ec0150246470 minimize donations by default --- 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')