This commit is contained in:
Etan Kissling 2023-08-28 14:40:50 +02:00
parent 5fb7db8fca
commit c6361e5640
No known key found for this signature in database
GPG Key ID: B21DA824C5A3D03D
2 changed files with 14 additions and 14 deletions

View File

@ -1122,7 +1122,7 @@ void ETHTransactionsDestroy(ETHTransactions *transactions);
/** /**
* Indicates the total number of transactions in a transaction sequence. * Indicates the total number of transactions in a transaction sequence.
* *
* - Individual transactions may be investigated using `ETHTransactionsGet`. * - Individual transactions may be inspected using `ETHTransactionsGet`.
* *
* @param transactions Transaction sequence. * @param transactions Transaction sequence.
* *
@ -1332,7 +1332,7 @@ const ETHAccessList *ETHTransactionGetAccessList(const ETHTransaction *transacti
/** /**
* Indicates the total number of access tuples in a transaction access list. * Indicates the total number of access tuples in a transaction access list.
* *
* - Individual access tuples may be investigated using `ETHAccessListGet`. * - Individual access tuples may be inspected using `ETHAccessListGet`.
* *
* @param accessList Transaction access list. * @param accessList Transaction access list.
* *
@ -1381,7 +1381,7 @@ const ETHExecutionAddress *ETHAccessTupleGetAddress(const ETHAccessTuple *access
/** /**
* Indicates the total number of storage keys in an access tuple. * Indicates the total number of storage keys in an access tuple.
* *
* - Individual storage keys may be investigated using * - Individual storage keys may be inspected using
* `ETHAccessTupleGetStorageKey`. * `ETHAccessTupleGetStorageKey`.
* *
* @param accessTuple Access tuple. * @param accessTuple Access tuple.
@ -1426,7 +1426,7 @@ const uint64_t *ETHTransactionGetMaxFeePerBlobGas(const ETHTransaction *transact
/** /**
* Indicates the total number of blob versioned hashes of a transaction. * Indicates the total number of blob versioned hashes of a transaction.
* *
* - Individual blob versioned hashes may be investigated using * - Individual blob versioned hashes may be inspected using
* `ETHTransactionGetBlobVersionedHash`. * `ETHTransactionGetBlobVersionedHash`.
* *
* @param transaction Transaction. * @param transaction Transaction.
@ -1582,7 +1582,7 @@ void ETHReceiptsDestroy(ETHReceipts *receipts);
/** /**
* Indicates the total number of receipts in a receipt sequence. * Indicates the total number of receipts in a receipt sequence.
* *
* - Individual receipts may be investigated using `ETHReceiptsGet`. * - Individual receipts may be inspected using `ETHReceiptsGet`.
* *
* @param receipts Receipt sequence. * @param receipts Receipt sequence.
* *
@ -1706,7 +1706,7 @@ const ETHLogs *ETHReceiptGetLogs(const ETHReceipt *receipt);
/** /**
* Indicates the total number of logs in a log sequence. * Indicates the total number of logs in a log sequence.
* *
* - Individual logs may be investigated using `ETHLogsGet`. * - Individual logs may be inspected using `ETHLogsGet`.
* *
* @param logs Log sequence. * @param logs Log sequence.
* *
@ -1754,7 +1754,7 @@ const ETHExecutionAddress *ETHLogGetAddress(const ETHLog *log);
/** /**
* Indicates the total number of topics in a log. * Indicates the total number of topics in a log.
* *
* - Individual topics may be investigated using `ETHLogGetTopic`. * - Individual topics may be inspected using `ETHLogGetTopic`.
* *
* @param log Log. * @param log Log.
* *

View File

@ -1686,7 +1686,7 @@ func ETHTransactionsGetCount(
transactions: ptr seq[ETHTransaction]): cint {.exported.} = transactions: ptr seq[ETHTransaction]): cint {.exported.} =
## Indicates the total number of transactions in a transaction sequence. ## Indicates the total number of transactions in a transaction sequence.
## ##
## * Individual transactions may be investigated using `ETHTransactionsGet`. ## * Individual transactions may be inspected using `ETHTransactionsGet`.
## ##
## Parameters: ## Parameters:
## * `transactions` - Transaction sequence. ## * `transactions` - Transaction sequence.
@ -1907,7 +1907,7 @@ func ETHAccessListGetCount(
accessList: ptr seq[ETHAccessTuple]): cint {.exported.} = accessList: ptr seq[ETHAccessTuple]): cint {.exported.} =
## Indicates the total number of access tuples in a transaction access list. ## Indicates the total number of access tuples in a transaction access list.
## ##
## * Individual access tuples may be investigated using `ETHAccessListGet`. ## * Individual access tuples may be inspected using `ETHAccessListGet`.
## ##
## Parameters: ## Parameters:
## * `accessList` - Transaction access list. ## * `accessList` - Transaction access list.
@ -1953,7 +1953,7 @@ func ETHAccessTupleGetNumStorageKeys(
accessTuple: ptr ETHAccessTuple): cint {.exported.} = accessTuple: ptr ETHAccessTuple): cint {.exported.} =
## Indicates the total number of storage keys in an access tuple. ## Indicates the total number of storage keys in an access tuple.
## ##
## * Individual storage keys may be investigated using ## * Individual storage keys may be inspected using
## `ETHAccessTupleGetStorageKey`. ## `ETHAccessTupleGetStorageKey`.
## ##
## Parameters: ## Parameters:
@ -2000,7 +2000,7 @@ func ETHTransactionGetNumBlobVersionedHashes(
transaction: ptr ETHTransaction): cint {.exported.} = transaction: ptr ETHTransaction): cint {.exported.} =
## Indicates the total number of blob versioned hashes of a transaction. ## Indicates the total number of blob versioned hashes of a transaction.
## ##
## * Individual blob versioned hashes may be investigated using ## * Individual blob versioned hashes may be inspected using
## `ETHTransactionGetBlobVersionedHash`. ## `ETHTransactionGetBlobVersionedHash`.
## ##
## Parameters: ## Parameters:
@ -2372,7 +2372,7 @@ func ETHReceiptsGetCount(
receipts: ptr seq[ETHReceipt]): cint {.exported.} = receipts: ptr seq[ETHReceipt]): cint {.exported.} =
## Indicates the total number of receipts in a receipt sequence. ## Indicates the total number of receipts in a receipt sequence.
## ##
## * Individual receipts may be investigated using `ETHReceiptsGet`. ## * Individual receipts may be inspected using `ETHReceiptsGet`.
## ##
## Parameters: ## Parameters:
## * `receipts` - Receipt sequence. ## * `receipts` - Receipt sequence.
@ -2499,7 +2499,7 @@ func ETHLogsGetCount(
logs: ptr seq[ETHLog]): cint {.exported.} = logs: ptr seq[ETHLog]): cint {.exported.} =
## Indicates the total number of logs in a log sequence. ## Indicates the total number of logs in a log sequence.
## ##
## * Individual logs may be investigated using `ETHLogsGet`. ## * Individual logs may be inspected using `ETHLogsGet`.
## ##
## Parameters: ## Parameters:
## * `logs` - Log sequence. ## * `logs` - Log sequence.
@ -2544,7 +2544,7 @@ func ETHLogGetNumTopics(
log: ptr ETHLog): cint {.exported.} = log: ptr ETHLog): cint {.exported.} =
## Indicates the total number of topics in a log. ## Indicates the total number of topics in a log.
## ##
## * Individual topics may be investigated using `ETHLogGetTopic`. ## * Individual topics may be inspected using `ETHLogGetTopic`.
## ##
## Parameters: ## Parameters:
## * `log` - Log. ## * `log` - Log.