| 23 | ) |
| 24 | |
| 25 | type txnLeasing struct { |
| 26 | v3.Txn |
| 27 | lkv *leasingKV |
| 28 | ctx context.Context |
| 29 | cs []v3.Cmp |
| 30 | opst []v3.Op |
| 31 | opse []v3.Op |
| 32 | } |
| 33 | |
| 34 | func (txn *txnLeasing) If(cs ...v3.Cmp) v3.Txn { |
| 35 | txn.cs = append(txn.cs, cs...) |
nothing calls this directly
no outgoing calls
no test coverage detected