Skip to content

Commit 1902c27

Browse files
committed
f remove last traces of dual_funding cfg
1 parent a7b1b64 commit 1902c27

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

ci/check-cfg-flags.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,6 @@ def check_cfg_tag(cfg):
100100
pass
101101
elif cfg == "require_route_graph_test":
102102
pass
103-
elif cfg == "dual_funding":
104-
pass
105103
elif cfg == "splicing":
106104
pass
107105
elif cfg == "async_payments":

ci/ci-tests.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,6 @@ RUSTFLAGS="--cfg=taproot" cargo test --verbose --color always -p lightning
176176
[ "$CI_MINIMIZE_DISK_USAGE" != "" ] && cargo clean
177177
RUSTFLAGS="--cfg=async_signing" cargo test --verbose --color always -p lightning
178178
[ "$CI_MINIMIZE_DISK_USAGE" != "" ] && cargo clean
179-
RUSTFLAGS="--cfg=dual_funding" cargo test --verbose --color always -p lightning
180-
[ "$CI_MINIMIZE_DISK_USAGE" != "" ] && cargo clean
181179
RUSTFLAGS="--cfg=splicing" cargo test --verbose --color always -p lightning
182180
[ "$CI_MINIMIZE_DISK_USAGE" != "" ] && cargo clean
183181
RUSTFLAGS="--cfg=async_payments" cargo test --verbose --color always -p lightning

lightning/src/ln/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ mod async_signer_tests;
8585
#[cfg(test)]
8686
#[allow(unused_mut)]
8787
mod offers_tests;
88-
#[allow(dead_code)] // TODO(dual_funding): Exchange for dual_funding cfg
88+
#[allow(dead_code)] // TODO(splicing): Exchange for splicing cfg
8989
pub(crate) mod interactivetxs;
9090

9191
pub use self::peer_channel_encryptor::LN_MAX_MSG_LEN;

0 commit comments

Comments
 (0)