mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-01-18 05:12:38 +01:00
8e941426cf
When a lightning node wishes to send payments to a BIP 353 human readable name (using BOLT 12), it first has to resolve that name to a DNS TXT record. bLIP 32 defines a way to do so over onion messages, and this completes our implementation thereof by adding the server side. It operates by simply accepting new messages and spawning tokio tasks to do DNS lookups using the `dnsse_prover` crate. It also contains full end-to-end tests of the BIP 353 -> BOLT 12 -> payment logic using the new server code to do the resolution. Note that because we now have a workspace crate which sets the "lightning/dnssec" feature in its `dev-dependencies`, a naive `cargo test` will test the "dnssec" feature.
18 lines
391 B
Plaintext
18 lines
391 B
Plaintext
/target/
|
|
c-bindings-gen/target/
|
|
lightning-c-bindings/target/
|
|
lightning-c-bindings/a.out
|
|
/hfuzz_target/
|
|
/net-tokio/target/
|
|
**/*.rs.bk
|
|
Cargo.lock
|
|
.idea
|
|
lightning/target
|
|
lightning/net_graph-*.bin
|
|
lightning-rapid-gossip-sync/res/full_graph.lngossip
|
|
lightning-custom-message/target
|
|
lightning-transaction-sync/target
|
|
lightning-dns-resolver/target
|
|
no-std-check/target
|
|
msrv-no-dev-deps-check/target
|