You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 5, 2025. It is now read-only.
The eth.getBlock().transactions should either return empty array in case of empty block, or include undefined as part of its return type.
Actual behavior
import{Web3}from"web3";constweb3=newWeb3('https://sepolia.infura.io/v3/xxxxxx');constblock=awaitweb3.eth.getBlock(6058307,true);console.log(block.transactions);// this is undefined!