Browse Source

depracate '-n'.

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

2
eth/main.cpp

@ -342,6 +342,8 @@ int main(int argc, char** argv)
exportTo = exportFrom = argv[++i];
else if ((arg == "-n" || arg == "-u" || arg == "--upnp") && i + 1 < argc)
{
if (arg == "-n")
cerr << "-n is DEPRECATED. It will be removed for the Frontier. Use -u instead." << endl;
string m = argv[++i];
if (isTrue(m))
upnp = true;

Loading…
Cancel
Save