lnd/queue
Oli 8047149c6a
multi: upgrade to btcd v2 modules
Migrate all btcd dependencies to the new per-package v2 modules (wire/v2,
txscript/v2, chaincfg/v2, chainhash/v2, btcutil/v2, psbt/v2, btcec/v2)
introduced by btcd v0.26.0, and pin the tagged ecosystem versions:
btcwallet v0.17.0, neutrino v0.18.0 and lightning-onion v1.4.0.

The bulk of the import rewrite was produced by the scripted diff from
https://github.com/btcsuite/btcd/pull/2547 (followed by 'make rpc'). The
address symbols that moved out of btcutil into the new address package
are imported as btcaddr where a local "address" variable would otherwise
shadow them. The go.mod/go.sum updates and the remaining manual
compilation fixes are folded into this single commit so it builds on its
own (the migration was previously split into a reproducible scripted-diff
plus follow-ups, intended to be squashed on merge).
2026-06-24 10:58:36 -07:00
..
back_pressure.go queue: add BackpressureQueue[T] with Random Early Drop 2026-03-28 12:42:53 +01:00
back_pressure_test.go queue: add BackpressureQueue[T] with Random Early Drop 2026-03-28 12:42:53 +01:00
circular_buf.go queue: add fixed size circular buffer 2020-03-17 08:22:23 +02:00
circular_buf_test.go queue: add fixed size circular buffer 2020-03-17 08:22:23 +02:00
gc_queue.go multi: Fix typos [skip ci] 2022-01-24 12:19:02 +02:00
gc_queue_test.go multi: add buffer.Write and pool.WriteBuffer, make GCQueue generic 2019-02-15 19:31:24 -08:00
go.mod multi: upgrade to btcd v2 modules 2026-06-24 10:58:36 -07:00
go.sum queue: add BackpressureQueue[T] with Random Early Drop 2026-03-28 12:42:53 +01:00
priority_queue.go remove repetitive words 2024-03-07 14:05:47 +08:00
priority_queue_test.go queue: Introducing a general purpose priority queue. 2019-12-11 16:08:05 +01:00
queue.go queue: detect close of incoming channel 2020-04-08 08:54:03 +02:00
queue_test.go queue: replace defer cleanup with t.Cleanup 2022-10-13 17:47:04 +08:00