Set default curve in EVMTool (#4790)

Set default EC curve when starting up EVMTool.

Signed-off-by: Danno Ferrin <danno.ferrin@swirldslabs.com>
pull/4799/head
Danno Ferrin 2 years ago committed by GitHub
parent 609904e509
commit 19077be0a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CHANGELOG.md
  2. 3
      ethereum/evmtool/src/main/java/org/hyperledger/besu/evmtool/EvmTool.java

@ -9,6 +9,7 @@
- Implement Eth/68 sub-protocol [#4715](https://github.com/hyperledger/besu/issues/4715)
- Increase the speed of modexp gas execution and execution. [#4780](https://github.com/hyperledger/besu/pull/4780)
- Added experimental CLI options `--Xeth-capability-max` and `--Xeth-capability-min` to specify a range of capabilities to be supported by the Eth protocol. [#4752](https://github.com/hyperledger/besu/pull/4752)
- Set the default curve in the EVMTool, like is done in production operations [#4790](https://github.com/hyperledger/besu/pull/4790)
### Bug Fixes

@ -15,11 +15,14 @@
*/
package org.hyperledger.besu.evmtool;
import org.hyperledger.besu.crypto.SignatureAlgorithmFactory;
import picocli.CommandLine;
public final class EvmTool {
public static void main(final String... args) {
SignatureAlgorithmFactory.setDefaultInstance();
final EvmToolCommand evmToolCommand = new EvmToolCommand();

Loading…
Cancel
Save