fix(rpc): use rpc::BlockNumber type not u64 (#1370)

This commit is contained in:
Matthias Seitz
2023-02-15 14:17:33 +01:00
committed by GitHub
parent 5bf41610d7
commit a9b9f42715
4 changed files with 11 additions and 12 deletions

View File

@ -1,7 +1,7 @@
use jsonrpsee::{core::RpcResult as Result, proc_macros::rpc};
use reth_primitives::{
rpc::{transaction::eip2930::AccessListWithGasUsed, BlockId},
Address, BlockNumber, Bytes, H256, H64, U256, U64,
rpc::{transaction::eip2930::AccessListWithGasUsed, BlockId, BlockNumber},
Address, Bytes, H256, H64, U256, U64,
};
use reth_rpc_types::{
CallRequest, EIP1186AccountProofResponse, FeeHistory, Index, RichBlock, SyncStatus,