Fix off-by-one in test_onchain_htlc_claim_reorg_remote_commitment
[rust-lightning] / lightning-invoice / src / tb.rs
1 pub trait Bool {}
2
3 #[derive(Copy, Clone)]
4 pub struct True {}
5
6 #[derive(Copy, Clone)]
7 pub struct False {}
8
9 impl Bool for True {}
10 impl Bool for False {}