@@ -480,15 +480,16 @@ func (b testBackend) SuggestGasTipCap(ctx context.Context) (*big.Int, error) {
480
480
func (b testBackend ) FeeHistory (ctx context.Context , blockCount uint64 , lastBlock rpc.BlockNumber , rewardPercentiles []float64 ) (* big.Int , [][]* big.Int , []* big.Int , []float64 , []* big.Int , []float64 , error ) {
481
481
return nil , nil , nil , nil , nil , nil , nil
482
482
}
483
- func (b testBackend ) BlobBaseFee (ctx context.Context ) * big.Int { return new (big.Int ) }
484
- func (b testBackend ) ChainDb () ethdb.Database { return b .db }
485
- func (b testBackend ) AccountManager () * accounts.Manager { return b .accman }
486
- func (b testBackend ) ExtRPCEnabled () bool { return false }
487
- func (b testBackend ) RPCGasCap () uint64 { return 10000000 }
488
- func (b testBackend ) RPCEVMTimeout () time.Duration { return time .Second }
489
- func (b testBackend ) RPCTxFeeCap () float64 { return 0 }
490
- func (b testBackend ) UnprotectedAllowed () bool { return false }
491
- func (b testBackend ) SetHead (number uint64 ) {}
483
+ func (b testBackend ) BlobBaseFee (ctx context.Context ) * big.Int { return new (big.Int ) }
484
+ func (b testBackend ) MaxBlobGasPerBlock (ctx context.Context ) uint64 { return 0 }
485
+ func (b testBackend ) ChainDb () ethdb.Database { return b .db }
486
+ func (b testBackend ) AccountManager () * accounts.Manager { return b .accman }
487
+ func (b testBackend ) ExtRPCEnabled () bool { return false }
488
+ func (b testBackend ) RPCGasCap () uint64 { return 10000000 }
489
+ func (b testBackend ) RPCEVMTimeout () time.Duration { return time .Second }
490
+ func (b testBackend ) RPCTxFeeCap () float64 { return 0 }
491
+ func (b testBackend ) UnprotectedAllowed () bool { return false }
492
+ func (b testBackend ) SetHead (number uint64 ) {}
492
493
func (b testBackend ) HeaderByNumber (ctx context.Context , number rpc.BlockNumber ) (* types.Header , error ) {
493
494
if number == rpc .LatestBlockNumber {
494
495
return b .chain .CurrentBlock (), nil
0 commit comments