fix init
authoralexhz <balthazar@yandex.ru>
Thu, 7 Mar 2013 15:53:59 +0000 (15:53 +0000)
committeralexhz <balthazar@yandex.ru>
Thu, 7 Mar 2013 15:53:59 +0000 (15:53 +0000)
README
p2pool/main.py

diff --git a/README b/README
index ab9b2a7..ef0a8fa 100644 (file)
--- a/README
+++ b/README
@@ -35,10 +35,10 @@ Additional info about scrypt module:
                 http://stackoverflow.com/questions/6034390/compiling-with-cython-and-mingw-produces-gcc-error-unrecognized-command-line-o
 
 Running P2Pool:
-    To use P2Pool, you must be running your own local bitcoind. For standard
+    To use P2Pool, you must be running your own local novacoind. For standard
     configurations, using P2Pool should be as simple as:
 
-        python run_p2pool.py --net novacoin
+        python run_p2pool.py
 
     Then run your miner program, connecting to 127.0.0.1 on port 8336 with any
     username and password.
index efc4248..47ffd4f 100644 (file)
@@ -361,17 +361,14 @@ def run():
     parser = fixargparse.FixedArgumentParser(description='p2pool (version %s)' % (p2pool.__version__,), fromfile_prefix_chars='@')
     parser.add_argument('--version', action='version', version=p2pool.__version__)
     parser.add_argument('--net',
-        help='use specified network (default: bitcoin)',
-        action='store', choices=sorted(realnets), default='bitcoin', dest='net_name')
+        help='use specified network (default: novacoin)',
+        action='store', choices=sorted(realnets), default='novacoin', dest='net_name')
     parser.add_argument('--testnet',
         help='''use the network's testnet''',
         action='store_const', const=True, default=False, dest='testnet')
     parser.add_argument('--debug',
         help='enable debugging mode',
         action='store_const', const=True, default=False, dest='debug')
-    parser.add_argument('-a', '--address',
-        help='generate payouts to this address (default: <address requested from bitcoind>)',
-        type=str, action='store', default=None, dest='address')
     parser.add_argument('--datadir',
         help='store data in this directory (default: <directory run_p2pool.py is in>/data)',
         type=str, action='store', default=None, dest='datadir')