From 456cc977bee5e73f3ef4f467a45d98f0d7c0229b Mon Sep 17 00:00:00 2001 From: Kirill Ponazdyr Date: Sat, 3 Apr 2021 20:03:54 +0200 Subject: [PATCH] Increase thread limit to 256 --- crypto/util/pow-miner.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/util/pow-miner.cpp b/crypto/util/pow-miner.cpp index 7d4462cf..c065fdc7 100644 --- a/crypto/util/pow-miner.cpp +++ b/crypto/util/pow-miner.cpp @@ -163,7 +163,7 @@ int main(int argc, char* const argv[]) { break; case 'w': threads = atoi(optarg); - CHECK(threads > 0 && threads <= 128); + CHECK(threads > 0 && threads <= 256); break; case 't': { int timeout = atoi(optarg);