X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=ldk-sample;a=blobdiff_plain;f=src%2Fconvert.rs;h=00ff84dc1be1161cf64582fbd0bfb07ecb312721;hp=c92a92682013966b441b24141fc78a00673e59ef;hb=d9e9c01d33f291cf4846c0406a3e00c9ecbd543d;hpb=80916829ec20eb8a510462e765a03c3ed051f2e0 diff --git a/src/convert.rs b/src/convert.rs index c92a926..00ff84d 100644 --- a/src/convert.rs +++ b/src/convert.rs @@ -1,86 +1,87 @@ -use bitcoin::BlockHash; use bitcoin::hashes::hex::FromHex; +use bitcoin::BlockHash; use lightning_block_sync::http::JsonResponse; use std::convert::TryInto; pub struct FundedTx { - pub changepos: i64, - pub hex: String, + pub changepos: i64, + pub hex: String, } impl TryInto for JsonResponse { - type Error = std::io::Error; - fn try_into(self) -> std::io::Result { - Ok(FundedTx { - changepos: self.0["changepos"].as_i64().unwrap(), - hex: self.0["hex"].as_str().unwrap().to_string(), - }) - } + type Error = std::io::Error; + fn try_into(self) -> std::io::Result { + Ok(FundedTx { + changepos: self.0["changepos"].as_i64().unwrap(), + hex: self.0["hex"].as_str().unwrap().to_string(), + }) + } } pub struct RawTx(pub String); impl TryInto for JsonResponse { - type Error = std::io::Error; - fn try_into(self) -> std::io::Result { - Ok(RawTx(self.0.as_str().unwrap().to_string())) - } + type Error = std::io::Error; + fn try_into(self) -> std::io::Result { + Ok(RawTx(self.0.as_str().unwrap().to_string())) + } } pub struct SignedTx { - pub complete: bool, - pub hex: String, + pub complete: bool, + pub hex: String, } impl TryInto for JsonResponse { - type Error = std::io::Error; - fn try_into(self) -> std::io::Result { - Ok(SignedTx { - hex: self.0["hex"].as_str().unwrap().to_string(), - complete: self.0["complete"].as_bool().unwrap(), - }) - } + type Error = std::io::Error; + fn try_into(self) -> std::io::Result { + Ok(SignedTx { + hex: self.0["hex"].as_str().unwrap().to_string(), + complete: self.0["complete"].as_bool().unwrap(), + }) + } } pub struct NewAddress(pub String); impl TryInto for JsonResponse { - type Error = std::io::Error; - fn try_into(self) -> std::io::Result { - Ok(NewAddress(self.0.as_str().unwrap().to_string())) - } + type Error = std::io::Error; + fn try_into(self) -> std::io::Result { + Ok(NewAddress(self.0.as_str().unwrap().to_string())) + } } pub struct FeeResponse { - pub feerate: Option, - pub errored: bool, + pub feerate: Option, + pub errored: bool, } impl TryInto for JsonResponse { - type Error = std::io::Error; - fn try_into(self) -> std::io::Result { - let errored = !self.0["errors"].is_null(); - Ok(FeeResponse { - errored, - feerate: match errored { - true => None, - // The feerate from bitcoind is in BTC/kb, and we want satoshis/kb. - false => Some((self.0["feerate"].as_f64().unwrap() * 100_000_000.0).round() as u32) - } - }) - } + type Error = std::io::Error; + fn try_into(self) -> std::io::Result { + let errored = !self.0["errors"].is_null(); + Ok(FeeResponse { + errored, + feerate: match errored { + true => None, + // The feerate from bitcoind is in BTC/kb, and we want satoshis/kb. + false => Some((self.0["feerate"].as_f64().unwrap() * 100_000_000.0).round() as u32), + }, + }) + } } pub struct BlockchainInfo { - pub latest_height: usize, - pub latest_blockhash: BlockHash, + pub latest_height: usize, + pub latest_blockhash: BlockHash, } impl TryInto for JsonResponse { - type Error = std::io::Error; - fn try_into(self) -> std::io::Result { - Ok(BlockchainInfo { - latest_height: self.0["blocks"].as_u64().unwrap() as usize, - latest_blockhash: BlockHash::from_hex(self.0["bestblockhash"].as_str().unwrap()).unwrap(), - }) - } + type Error = std::io::Error; + fn try_into(self) -> std::io::Result { + Ok(BlockchainInfo { + latest_height: self.0["blocks"].as_u64().unwrap() as usize, + latest_blockhash: BlockHash::from_hex(self.0["bestblockhash"].as_str().unwrap()) + .unwrap(), + }) + } }