Skip to content

Commit caa4ffb

Browse files
committed
internal/ethapi: remove blank lines
1 parent 46f75dc commit caa4ffb

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

internal/ethapi/api.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1325,23 +1325,18 @@ func RPCMarshalHeader(head *types.Header) map[string]interface{} {
13251325
"transactionsRoot": head.TxHash,
13261326
"receiptsRoot": head.ReceiptHash,
13271327
}
1328-
13291328
if head.BaseFee != nil {
13301329
result["baseFeePerGas"] = (*hexutil.Big)(head.BaseFee)
13311330
}
1332-
13331331
if head.WithdrawalsHash != nil {
13341332
result["withdrawalsRoot"] = head.WithdrawalsHash
13351333
}
1336-
13371334
if head.BlobGasUsed != nil {
13381335
result["blobGasUsed"] = hexutil.Uint64(*head.BlobGasUsed)
13391336
}
1340-
13411337
if head.ExcessBlobGas != nil {
13421338
result["excessBlobGas"] = hexutil.Uint64(*head.ExcessBlobGas)
13431339
}
1344-
13451340
return result
13461341
}
13471342

0 commit comments

Comments
 (0)