From a3e1d3ea95d484d3f91ca13054ccd03a246b0aeb Mon Sep 17 00:00:00 2001 From: Sina Mahmoodi Date: Tue, 12 Sep 2023 18:14:15 +0200 Subject: [PATCH] improve comments --- graphql/schema.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/graphql/schema.go b/graphql/schema.go index 93ef9a1246..5738923fc1 100644 --- a/graphql/schema.go +++ b/graphql/schema.go @@ -143,7 +143,7 @@ const schema string = ` # coerced into the EIP-1559 format by setting both maxFeePerGas and # maxPriorityFeePerGas as the transaction's gas price. effectiveGasPrice: BigInt - # BlobGasUsed is the amount of gas used for this blob transaction. + # BlobGasUsed is the amount of blob gas used by this transaction. blobGasUsed: Long # blobGasPrice is the actual value per blob gas deducted from the senders account. blobGasPrice: BigInt @@ -168,7 +168,7 @@ const schema string = ` # RawReceipt is the canonical encoding of the receipt. For post EIP-2718 typed transactions # this is equivalent to TxType || ReceiptEncoding. rawReceipt: Bytes! - # BlobVersionedHashes is a set of hash values contained in the blob transaction. + # BlobVersionedHashes is a set of hash outputs from the blobs in the transaction. blobVersionedHashes: [Bytes32!] } @@ -275,9 +275,9 @@ const schema string = ` # Withdrawals is a list of withdrawals associated with this block. If # withdrawals are unavailable for this block, this field will be null. withdrawals: [Withdrawal!] - # BlobGasUsed is the amount of gas used for blob transactions. + # BlobGasUsed is the total amount of gas used by the transactions. blobGasUsed: Long - # ExcessBlobGas is the amount of excess gas available for blob transactions. + # ExcessBlobGas is a running total of blob gas consumed in excess of the target, prior to the block. excessBlobGas: Long }