From 1a7aac338ed30840e585bb7fde9cb94da9defeff Mon Sep 17 00:00:00 2001 From: "alex.sharov" Date: Fri, 2 Jun 2023 08:15:18 +0700 Subject: [PATCH] save --- kv/kv_interface.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kv/kv_interface.go b/kv/kv_interface.go index f69854b3b..d9029ff91 100644 --- a/kv/kv_interface.go +++ b/kv/kv_interface.go @@ -29,6 +29,8 @@ import ( //Variables Naming: // tx - Database 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 // k, v - key, value // ts - TimeStamp. Usually it's Etherum's TransactionNumber (auto-increment ID). Or BlockNumber.