We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed45bf8 commit 8a87e75Copy full SHA for 8a87e75
rpc-json/src/lib.rs
@@ -540,7 +540,7 @@ pub struct GetRawTransactionResultVin {
540
#[serde(default, with = "dashcore::amount::serde::as_btc::opt")]
541
pub value: Option<Amount>,
542
#[serde(default)]
543
- pub value_sat: Option<u32>,
+ pub value_sat: Option<u64>,
544
pub addresses: Option<Vec<String>>,
545
pub sequence: u32,
546
}
@@ -579,7 +579,7 @@ pub struct GetRawTransactionResultVout {
579
#[serde(with = "dashcore::amount::serde::as_btc")]
580
pub value: Amount,
581
#[serde(rename = "valueSat")]
582
- pub value_sat: u32,
+ pub value_sat: u64,
583
pub n: u32,
584
#[serde(rename = "scriptPubKey")]
585
pub script_pub_key: GetRawTransactionResultVoutScriptPubKey,
0 commit comments