Skip to content

Commit

Permalink
fix: ::bytes re-export (#5885)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes authored Dec 28, 2023
1 parent e5ecd4a commit cd08ba8
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 6 deletions.
25 changes: 23 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions crates/primitives/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ pub use block::{
Block, BlockBody, BlockHashOrNumber, BlockId, BlockNumHash, BlockNumberOrTag, BlockWithSenders,
ForkBlock, RpcBlockHash, SealedBlock, SealedBlockWithSenders,
};
pub use bytes::{self, Buf, BufMut, BytesMut};
pub use chain::{
AllGenesisFormats, BaseFeeParams, BaseFeeParamsKind, Chain, ChainInfo, ChainSpec,
ChainSpecBuilder, DisplayHardforks, ForkBaseFeeParams, ForkCondition, ForkTimestamps,
Expand Down Expand Up @@ -100,9 +99,11 @@ pub use withdrawal::Withdrawal;
// Re-exports
pub use self::ruint::UintTryTo;
pub use alloy_primitives::{
self, address, b256, bloom, bytes, eip191_hash_message, hex, hex_literal, keccak256, ruint,
Address, BlockHash, BlockNumber, Bloom, BloomInput, Bytes, ChainId, Selector, StorageKey,
StorageValue, TxHash, TxIndex, TxNumber, B128, B256, B512, B64, U128, U256, U64, U8,
self, address, b256, bloom, bytes,
bytes::{Buf, BufMut, BytesMut},
eip191_hash_message, hex, hex_literal, keccak256, ruint, Address, BlockHash, BlockNumber,
Bloom, BloomInput, Bytes, ChainId, Selector, StorageKey, StorageValue, TxHash, TxIndex,
TxNumber, B128, B256, B512, B64, U128, U256, U64, U8,
};
pub use reth_ethereum_forks::*;
pub use revm_primitives::{self, JumpMap};
Expand Down

0 comments on commit cd08ba8

Please sign in to comment.