Update error deserialization in compliance with BOLT #1
[rust-lightning] / src / lib.rs
index 3d2b94d8690080cccb9cfab489c49b3e58c92a05..1fa7b21e06aaefbdc8b94c7a24bbfe71c55c392e 100644 (file)
@@ -1,12 +1,12 @@
 #![crate_name = "lightning"]
 
 extern crate bitcoin;
-extern crate secp256k1;
-extern crate rand;
 extern crate crypto;
-extern crate num; //TODO: Convince andrew to not rely on this for fucking casting...
+extern crate rand;
+extern crate secp256k1;
+#[cfg(test)] extern crate hex;
 
+#[macro_use]
+pub mod util;
 pub mod chain;
-pub mod wallet;
 pub mod ln;
-pub mod util;