Browse Source

Enable the network in the case of explicitly disabled discovery.

cl-refactor
Gav Wood 10 years ago
parent
commit
9a01bb2b45
  1. 2
      eth/main.cpp

2
eth/main.cpp

@ -1706,7 +1706,7 @@ int main(int argc, char** argv)
cout << "Transaction Signer: " << signingKey << endl;
cout << "Mining Benefactor: " << beneficiary << endl;
if (bootstrap || !remoteHost.empty())
if (bootstrap || !remoteHost.empty() || disableDiscovery)
{
web3.startNetwork();
cout << "Node ID: " << web3.enode() << endl;

Loading…
Cancel
Save