Skip to content

Commit

Permalink
core: build fix (#2294)
Browse files Browse the repository at this point in the history
  • Loading branch information
emailtovamos authored and buddh0 committed Mar 21, 2024
1 parent 832e1fc commit e5d81b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eth/api_backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ func (b *EthAPIBackend) GetReceipts(ctx context.Context, hash common.Hash) (type
}

func (b *EthAPIBackend) GetBlobSidecars(ctx context.Context, hash common.Hash) (types.BlobTxSidecars, error) {
return b.eth.blockchain.GetBlobsByHash(hash), nil
return b.eth.blockchain.GetSidecarsByHash(hash), nil
}
func (b *EthAPIBackend) GetLogs(ctx context.Context, hash common.Hash, number uint64) ([][]*types.Log, error) {
return rawdb.ReadLogs(b.eth.chainDb, hash, number), nil
Expand Down

0 comments on commit e5d81b8

Please sign in to comment.