-
Notifications
You must be signed in to change notification settings - Fork 179
/
time.go
49 lines (43 loc) · 1.84 KB
/
time.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package logical
import (
"math"
)
// We will use txIndex as logical time for the purpose of block execution.
//
// Execution time refers to the transaction's start time. Snapshot time refers
// to the time when the snapshot first becomes readable (i.e., the "snapshot
// time - 1" transaction committed the snapshot view). Each transaction's
// snapshot time must be smaller than or equal to its execution time.
//
// Normal transaction advances the time clock and must be committed to
// DerivedBlockData in monotonically increasing execution time order.
//
// Snapshot read transaction (aka script) does not advance the time clock. Its
// execution and snapshot time must be set to the latest snapshot time (or
// EndOfBlockExecutionTime in case the real logical time is unavailable).
//
// Note that the "real" txIndex range is [0, math.MaxUint32], but we have
// expanded the range to support events that are not part of the block
// execution.
type Time int64
const (
// All events associated with the parent block is assigned the same value.
//
// Note that we can assign the time to any value in the range
// [math.MinInt64, -1].
ParentBlockTime = Time(-1)
// All events associated with a child block is assigned the same value.
//
// Note that we can assign the time to any value in the range
// (math.MaxUint32 + 1, math.MaxInt64]. (The +1 is needed for assigning
// EndOfBlockExecutionTime a unique value)
ChildBlockTime = Time(math.MaxInt64)
// EndOfBlockExecutionTime is used when the real tx index is unavailable,
// such as during script execution.
EndOfBlockExecutionTime = ChildBlockTime - 1
// A normal transaction cannot commit to EndOfBlockExecutionTime.
//
// Note that we can assign the time to any value in the range
// [max.MathUInt32, EndOfBlockExecutionTime)
LargestNormalTransactionExecutionTime = EndOfBlockExecutionTime - 1
)