solarcoin / solarcoin-legacy-pow-wallet

Initial version of the wallet (deprecated, for historical purposes only)
MIT License
21 stars 20 forks source link

Bug in src/protocol.h #2

Closed ddirt closed 10 years ago

ddirt commented 10 years ago

The default P2P and RPC ports are both set to 18188. Line 22 in protocol h is currently: return testnet ? 28188 : 18188;

according to the readme file, that should actually be return testnet ? 28188 : 18181;

otherwise solarcoind terminates with bind error on launch unless user sets alternate rpcport. Suggest changing P2P port to 18181 in protocol.h or changing RPC port to 18181 in bitcoinrpc.cpp

solarcoin commented 10 years ago

Corrected. Thanks!