From c6361e56406d7a5998c39cff33db27c8eba88a7f Mon Sep 17 00:00:00 2001 From: Etan Kissling Date: Mon, 28 Aug 2023 14:40:50 +0200 Subject: [PATCH] X --- beacon_chain/libnimbus_lc/libnimbus_lc.h | 14 +++++++------- beacon_chain/libnimbus_lc/libnimbus_lc.nim | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/beacon_chain/libnimbus_lc/libnimbus_lc.h b/beacon_chain/libnimbus_lc/libnimbus_lc.h index f0e434568..8dca76566 100644 --- a/beacon_chain/libnimbus_lc/libnimbus_lc.h +++ b/beacon_chain/libnimbus_lc/libnimbus_lc.h @@ -1122,7 +1122,7 @@ void ETHTransactionsDestroy(ETHTransactions *transactions); /** * 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. * @@ -1332,7 +1332,7 @@ const ETHAccessList *ETHTransactionGetAccessList(const ETHTransaction *transacti /** * 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. * @@ -1381,7 +1381,7 @@ const ETHExecutionAddress *ETHAccessTupleGetAddress(const ETHAccessTuple *access /** * 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`. * * @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. * - * - Individual blob versioned hashes may be investigated using + * - Individual blob versioned hashes may be inspected using * `ETHTransactionGetBlobVersionedHash`. * * @param transaction Transaction. @@ -1582,7 +1582,7 @@ void ETHReceiptsDestroy(ETHReceipts *receipts); /** * 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. * @@ -1706,7 +1706,7 @@ const ETHLogs *ETHReceiptGetLogs(const ETHReceipt *receipt); /** * 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. * @@ -1754,7 +1754,7 @@ const ETHExecutionAddress *ETHLogGetAddress(const ETHLog *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. * diff --git a/beacon_chain/libnimbus_lc/libnimbus_lc.nim b/beacon_chain/libnimbus_lc/libnimbus_lc.nim index 240a53831..7fe446aa4 100644 --- a/beacon_chain/libnimbus_lc/libnimbus_lc.nim +++ b/beacon_chain/libnimbus_lc/libnimbus_lc.nim @@ -1686,7 +1686,7 @@ func ETHTransactionsGetCount( transactions: ptr seq[ETHTransaction]): cint {.exported.} = ## 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: ## * `transactions` - Transaction sequence. @@ -1907,7 +1907,7 @@ func ETHAccessListGetCount( accessList: ptr seq[ETHAccessTuple]): cint {.exported.} = ## 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: ## * `accessList` - Transaction access list. @@ -1953,7 +1953,7 @@ func ETHAccessTupleGetNumStorageKeys( accessTuple: ptr ETHAccessTuple): cint {.exported.} = ## 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`. ## ## Parameters: @@ -2000,7 +2000,7 @@ func ETHTransactionGetNumBlobVersionedHashes( transaction: ptr ETHTransaction): cint {.exported.} = ## 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`. ## ## Parameters: @@ -2372,7 +2372,7 @@ func ETHReceiptsGetCount( receipts: ptr seq[ETHReceipt]): cint {.exported.} = ## 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: ## * `receipts` - Receipt sequence. @@ -2499,7 +2499,7 @@ func ETHLogsGetCount( logs: ptr seq[ETHLog]): cint {.exported.} = ## 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: ## * `logs` - Log sequence. @@ -2544,7 +2544,7 @@ func ETHLogGetNumTopics( log: ptr ETHLog): cint {.exported.} = ## Indicates the total number of topics in a log. ## - ## * Individual topics may be investigated using `ETHLogGetTopic`. + ## * Individual topics may be inspected using `ETHLogGetTopic`. ## ## Parameters: ## * `log` - Log.