Skip to content

Commit

Permalink
feat(sign): optimize default signature verification efficiency (tronp…
Browse files Browse the repository at this point in the history
  • Loading branch information
lurais authored Aug 9, 2023
1 parent 56efc4e commit 2bbc0fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -824,7 +824,7 @@ public static void setParam(final String[] args, final String confFileName) {
PARAMETER.validateSignThreadNum =
config.hasPath(Constant.NODE_VALIDATE_SIGN_THREAD_NUM) ? config
.getInt(Constant.NODE_VALIDATE_SIGN_THREAD_NUM)
: (Runtime.getRuntime().availableProcessors() + 1) / 2;
: Runtime.getRuntime().availableProcessors();

PARAMETER.walletExtensionApi =
config.hasPath(Constant.NODE_WALLET_EXTENSION_API)
Expand Down

0 comments on commit 2bbc0fd

Please sign in to comment.