Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,6 @@ Revm is licensed under MIT License.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in these crates by you, shall be licensed as above, without any additional terms or conditions.

If `gmp` feature flag is used, GPL code gets compiled, if enabled please make sure to follow this license.

### Security

For any security questions or findings, please reach out to me directly via email at [[email protected]](mailto:[email protected]) or contact me on Keybase under the username @draganrakita.
4 changes: 1 addition & 3 deletions crates/precompile/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,7 @@ blst = ["dep:blst"]
# Enables the substrate implementation of eip1962
bn = ["dep:bn"]

# Use GMP (LGPL) for modexp precompile via gmp-mpfr-sys.
# If you want to use a system libs and dynamic linking of GMP, include `gmp-mpfr-sys` in your project
# with a `features = ["use-system-libs"]` enabled.
# Use GMP for accelerated modexp precompile. Dynamically links to libgmp at runtime.
gmp = ["dep:gmp-mpfr-sys"]

[[bench]]
Expand Down
2 changes: 1 addition & 1 deletion crates/revm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ asm-sha2 = ["precompile/asm-sha2"]
# Binary can be executed on all systems.
portable = ["precompile/portable"]

# Use GMP for modexp precompile (LGPL; dynamically linked via system libs).
# Use GMP for accelerated modexp precompile. Dynamically links to libgmp at runtime.
gmp = ["precompile/gmp"]

# Statetest types for running ethereum tests
Expand Down
Loading