Skip to content

Commit

Permalink
chore: fix no default feature importing
Browse files Browse the repository at this point in the history
  • Loading branch information
j75689 committed Apr 12, 2024
1 parent 4305283 commit 598d69d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions crates/precompile/src/bls.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use crate::{Error, Precompile, PrecompileResult, PrecompileWithAddress};
use bls_on_arkworks as bls;
use revm_primitives::Bytes;
use std::vec::Vec;

pub const BLS_SIGNATURE_VALIDATION: PrecompileWithAddress = PrecompileWithAddress(
crate::u64_to_address(102),
Expand Down
3 changes: 3 additions & 0 deletions crates/precompile/src/cometbft.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ use cometbft_light_client_verifier::{
use cometbft_proto::types::v1::LightBlock as TmLightBlock;
use prost::Message;
use revm_primitives::Bytes;
use std::borrow::ToOwned;
use std::string::String;
use std::vec::Vec;

pub const COMETBFT_LIGHT_BLOCK_VALIDATION: PrecompileWithAddress = PrecompileWithAddress(
crate::u64_to_address(103),
Expand Down

0 comments on commit 598d69d

Please sign in to comment.