Merge pull request #90 from TheBlueMatt/2018-07-percent-bump
authorMatt Corallo <649246+TheBlueMatt@users.noreply.github.com>
Thu, 26 Jul 2018 16:48:28 +0000 (12:48 -0400)
committerGitHub <noreply@github.com>
Thu, 26 Jul 2018 16:48:28 +0000 (12:48 -0400)
Bump README percent usable

README.md
src/util/transaction_utils.rs

index 0cf215189f33515bbccc099cf5e82075874c967d..6a9369ea9b8ca8a7e35ace4a261f5cc0e0d38090 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,8 +1,7 @@
 Rust-Lightning, not Rusty's Lightning!
 
-Currently somewhere near 5% towards usable, published to see if there is any
-real interest from folks in either contributing to or using a lightning rust
-library.
+Currently somewhere near 10% towards usable, published to see if there is any
+real interest from folks in using a lightning rust library.
 
 The goal is to provide a full-featured but also incredibly flexible lightning
 implementation, allowing the user to decide how they wish to use it. With that
index 9ad0b82436ef6e4cb22e3b81ab79355b3c90f716..92bc209abb1978aa29cb75edecff7bc094204c6e 100644 (file)
@@ -40,11 +40,11 @@ mod tests {
 
        use bitcoin::blockdata::script::{Script, Builder};
        use bitcoin::blockdata::transaction::TxOut;
-    use bitcoin::util::hash::Sha256dHash;
+       use bitcoin::util::hash::Sha256dHash;
 
        use hex::decode;
 
-    #[test]
+       #[test]
        fn sort_output_by_value() {
                let txout1 = TxOut {
                        value:  100,
@@ -67,7 +67,7 @@ mod tests {
                        );
        }
 
-    #[test]
+       #[test]
        fn sort_output_by_script_pubkey() {
                let txout1 = TxOut {
                        value:  100,
@@ -90,7 +90,7 @@ mod tests {
                        );
        }
 
-    #[test]
+       #[test]
        fn sort_output_by_bip_test() {
                let txout1 = TxOut {
                        value: 100000000,
@@ -136,7 +136,7 @@ mod tests {
 
                                        assert_eq!(outputs, expected);
                                }
-          )*
+                       )*
                }
        }