This commit is contained in:
alex.sharov 2023-06-02 08:15:18 +07:00
parent 4935e56e9a
commit 1a7aac338e

View File

@ -29,6 +29,8 @@ import (
//Variables Naming: //Variables Naming:
// tx - Database Transaction // tx - Database Transaction
// txn - Ethereum Transaction (and TxNum - is also number of Etherum Transaction) // txn - Ethereum Transaction (and TxNum - is also number of Etherum Transaction)
// blockNum - Ethereum block number - same across all nodes. blockID - auto-increment ID - which can be differrent across all nodes
// txNum/txID - same
// RoTx - Read-Only Database Transaction. RwTx - read-write // RoTx - Read-Only Database Transaction. RwTx - read-write
// k, v - key, value // k, v - key, value
// ts - TimeStamp. Usually it's Etherum's TransactionNumber (auto-increment ID). Or BlockNumber. // ts - TimeStamp. Usually it's Etherum's TransactionNumber (auto-increment ID). Or BlockNumber.