use new bitcoin-chain module extracted from bitcoin
[rust-lightning] / src / lib.rs
1 #![crate_name = "lightning"]
2
3 extern crate bitcoin;
4 extern crate bitcoin_chain;
5 extern crate secp256k1;
6 extern crate rand;
7 extern crate crypto;
8
9 pub mod chain;
10 pub mod ln;
11 pub mod util;