You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: db/state/temporal_mem_batch.go
+6-19Lines changed: 6 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,7 @@ import (
23
23
"fmt"
24
24
"maps"
25
25
"sort"
26
+
"strings"
26
27
"sync"
27
28
28
29
btree2 "github.com/anacrolix/btree"
@@ -60,7 +61,7 @@ type TemporalMemBatch struct {
60
61
61
62
latestStateLock sync.RWMutex
62
63
domains [kv.DomainLen]map[string][]dataWithTxNum
63
-
storage*btree2.Map[string, []dataWithTxNum] // TODO: replace hardcoded domain name to per-config configuration of available Guarantees/AccessMethods (range vs get)
64
+
storage btree2.Map[string, []dataWithTxNum] // TODO: replace hardcoded domain name to per-config configuration of available Guarantees/AccessMethods (range vs get)
0 commit comments