Skip to content

Commit

Permalink
Set default curve in EVMTool (hyperledger#4790)
Browse files Browse the repository at this point in the history
Set default EC curve when starting up EVMTool.

Signed-off-by: Danno Ferrin <[email protected]>
  • Loading branch information
shemnon authored and eum602 committed Nov 3, 2023
1 parent d66acd0 commit ae10a93
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down

0 comments on commit ae10a93

Please sign in to comment.