Skip to content

Commit bb4ed96

Browse files
committed
MincoinPool: Expire Address After 4h
1 parent 73ff818 commit bb4ed96

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

p2pool/main.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -460,8 +460,8 @@ def run():
460460
help='number of mincoin auto-generated addresses to maintain for getwork dynamic address allocation',
461461
type=int, action='store', default=2, dest='numaddresses')
462462
parser.add_argument('-t', '--timeaddresses',
463-
help='seconds between acquisition of new address and removal of single old (default: 2 days or 172800s)',
464-
type=int, action='store', default=172800, dest='timeaddresses')
463+
help='seconds between acquisition of new address and removal of single old (default: 4 hours or 14400s)',
464+
type=int, action='store', default=14400, dest='timeaddresses')
465465
parser.add_argument('--datadir',
466466
help='store data in this directory (default: <directory run_mincoinpool.py is in>/data)',
467467
type=str, action='store', default=None, dest='datadir')

0 commit comments

Comments
 (0)