ref: 2a5c12f0152240f54d01653b70b7605103393afd
dir: /ref/store/files/transaction_queue.go/
package files
func (tx *Transaction) queue(op queuedUpdate) error {
err := (&refUpdateExecutor{store: tx.store}).validateQueuedUpdate(op)
if err != nil {
return err
}
tx.ops = append(tx.ops, op)
return nil
}