Constify 2**48-1 and add some additional comments in Channel
[rust-lightning] / src / lib.rs
1 #![crate_name = "lightning"]
2
3 extern crate bitcoin;
4 extern crate crypto;
5 extern crate rand;
6 extern crate secp256k1;
7 #[cfg(test)] extern crate hex;
8
9 #[macro_use]
10 pub mod util;
11 pub mod chain;
12 pub mod ln;