File tree 3 files changed +3
-4
lines changed
packages/hardhat-core/test/internal/hardhat-network/provider
3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import {
11
11
import { EthereumProvider } from "../../../../src/types" ;
12
12
import { makeForkClient } from "../../../../src/internal/hardhat-network/provider/utils/makeForkClient" ;
13
13
import { ALCHEMY_URL } from "../../../setup" ;
14
- import { rpcToBlockData } from "../../../../src/internal/hardhat-network/provider/fork /rpcToBlockData" ;
14
+ import { rpcToBlockData } from "./utils /rpcToBlockData" ;
15
15
16
16
async function getLatestBaseFeePerGas ( provider : EthereumProvider ) {
17
17
const block = await provider . send ( "eth_getBlockByNumber" , [ "latest" , false ] ) ;
Original file line number Diff line number Diff line change 1
1
import { BlockData } from "@nomicfoundation/ethereumjs-block" ;
2
2
3
- import { RpcBlockWithTransactions } from "../../../core/jsonrpc/types/output/block" ;
4
-
3
+ import { RpcBlockWithTransactions } from "../../../../../src/internal/core/jsonrpc/types/output/block" ;
5
4
import { rpcToTxData } from "./rpcToTxData" ;
6
5
7
6
export function rpcToBlockData ( rpcBlock : RpcBlockWithTransactions ) : BlockData {
Original file line number Diff line number Diff line change 5
5
TxData ,
6
6
} from "@nomicfoundation/ethereumjs-tx" ;
7
7
8
- import { RpcTransaction } from "../../../core/jsonrpc/types/output/transaction" ;
8
+ import { RpcTransaction } from "../../../../../src/internal/ core/jsonrpc/types/output/transaction" ;
9
9
10
10
// the FeeMarketEIP1559TxData interface from ethereum js also has a
11
11
// `gasPrice?: never | null` property, which causes a compilation
You can’t perform that action at this time.
0 commit comments