aboutsummaryrefslogtreecommitdiff
path: root/refstore/files/transaction_begin.go
diff options
context:
space:
mode:
authorGravatar Runxi Yu2026-03-23 03:25:44 +0000
committerGravatar Runxi Yu2026-03-23 03:27:52 +0000
commit4a796e64ac576d6a3e3f2fe6174c4aa476ea0c5c (patch)
tree44d72a20076ceab0981d0b553693d26ca36cc0be /refstore/files/transaction_begin.go
parentreceivepack: Lifecycle/ownership docs (diff)
signatureNo signature
refstore: Improve interfaces, errors, and make batch work v0.1.92
Diffstat (limited to 'refstore/files/transaction_begin.go')
-rw-r--r--refstore/files/transaction_begin.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/refstore/files/transaction_begin.go b/refstore/files/transaction_begin.go
index 73bc9767..95834a33 100644
--- a/refstore/files/transaction_begin.go
+++ b/refstore/files/transaction_begin.go
@@ -8,6 +8,6 @@ import "codeberg.org/lindenii/furgit/refstore"
func (store *Store) BeginTransaction() (refstore.Transaction, error) {
return &Transaction{
store: store,
- ops: make([]txOp, 0, 8),
+ ops: make([]queuedUpdate, 0, 8),
}, nil
}