summaryrefslogtreecommitdiff
path: root/idtool.cpp
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2013-10-05 14:15:59 -0400
committerAdam Ierymenko <adam.ierymenko@gmail.com>2013-10-05 14:15:59 -0400
commitbc715fbd515ccb3455ef881fe8334f1bd61caafe (patch)
treeff0037e5a14b30d9ba590b9991c2b12792c16580 /idtool.cpp
parenta31c54b44befcd4c0591f8a9356cad64f8bb85cf (diff)
downloadinfinitytier-bc715fbd515ccb3455ef881fe8334f1bd61caafe.tar.gz
infinitytier-bc715fbd515ccb3455ef881fe8334f1bd61caafe.zip
Make new identity hashcash algo memory hard, and tweak generation time a bit. Current hashcash cost should be overkill for what we need but still tolerable to users.
Diffstat (limited to 'idtool.cpp')
-rw-r--r--idtool.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/idtool.cpp b/idtool.cpp
index 70fb15b0..aea73385 100644
--- a/idtool.cpp
+++ b/idtool.cpp
@@ -93,7 +93,7 @@ int main(int argc,char **argv)
return -1;
}
- if (!id.locallyValidate(true)) {
+ if (!id.locallyValidate()) {
std::cerr << argv[2] << " FAILED validation." << std::endl;
return -1;
} else std::cout << argv[2] << " is a valid identity (full check performed)" << std::endl;