Skip to content
This repository has been archived by the owner on Dec 30, 2024. It is now read-only.

Commit

Permalink
fix #109
Browse files Browse the repository at this point in the history
  • Loading branch information
yann300 committed Feb 15, 2016
1 parent 9318231 commit 850fb9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eth/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ void help()
<< " --peerset <list> Space delimited list of peers; element format: type:publickey@ipAddress[:port]." << endl
<< " Types:" << endl
<< " default Attempt connection when no other peers are available and pinning is disabled." << endl
<< " require Keep connected at all times." << endl
<< " required Keep connected at all times." << endl
// TODO:
// << " --trust-peers <filename> Space delimited list of publickeys." << endl

Expand Down Expand Up @@ -803,7 +803,7 @@ int main(int argc, char** argv)
if (keyAndHost.size() != 2)
continue;
pubk = keyAndHost[0];
if (pubk.size() != 40)
if (pubk.size() != 128)
continue;
hostIP = keyAndHost[1];

Expand Down

0 comments on commit 850fb9c

Please sign in to comment.