mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-04 09:48:19 +01:00
* Goal is to backend agnostic source to chain notifications * Open channels will communicate with this source to register intent for critical notifications * Pending notifications will need to be committed to disk. * Will also need a journal to ensure no notification is missed * Later goals include extending this to communicate with 3rd party outsource services
12 lines
268 B
Go
12 lines
268 B
Go
package chainntnfs
|
|
|
|
// TODO(roasbeef): finish
|
|
// * multiple backends for interface
|
|
// * btcd - websockets
|
|
// * core - rpc polling or ZeroMQ
|
|
// * direct p2p
|
|
// * random bitcoin API?
|
|
// * electrum?
|
|
// * other stuff maybe...
|
|
type ChainNotifier interface {
|
|
}
|