Skip to content
This repository was archived by the owner on Nov 26, 2024. It is now read-only.

Commit 7041357

Browse files
committed
f Include into_model implementations
1 parent bd6863c commit 7041357

File tree

3 files changed

+93
-3
lines changed

3 files changed

+93
-3
lines changed

json/src/model/mod.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ pub use self::{
3434
},
3535
generating::{Generate, GenerateToAddress},
3636
network::{GetNetworkInfo, GetNetworkInfoAddress, GetNetworkInfoNetwork},
37-
raw_transactions::SendRawTransaction,
37+
raw_transactions::{
38+
SendRawTransaction, SubmitPackage, SubmitPackageTxResult, SubmitPackageTxResultFees,
39+
},
3840
wallet::{
3941
CreateWallet, GetBalance, GetBalances, GetBalancesMine, GetBalancesWatchOnly,
4042
GetNewAddress, GetTransaction, GetTransactionDetail, GetTransactionDetailCategory,

json/src/model/raw_transactions.rs

+52-1
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,60 @@
55
//! These structs model the types returned by the JSON-RPC API but have concrete types
66
//! and are not specific to a specific version of Bitcoin Core.
77
8-
use bitcoin::Txid;
8+
use std::collections::HashMap;
9+
10+
use bitcoin::{Amount, FeeRate, Txid, Wtxid};
911
use serde::{Deserialize, Serialize};
1012

1113
/// Models the result of JSON-RPC method `sendrawtransaction`.
1214
#[derive(Clone, Debug, PartialEq, Deserialize, Serialize)]
1315
pub struct SendRawTransaction(pub Txid);
16+
17+
#[derive(Clone, Debug, PartialEq, Deserialize, Serialize)]
18+
pub struct SubmitPackage {
19+
/// The transaction package result message. "success" indicates all transactions were accepted into or are already in the mempool.
20+
pub package_msg: String,
21+
/// Transaction results keyed by [`Wtxid`].
22+
#[serde(rename = "tx-results")]
23+
pub tx_results: HashMap<Wtxid, SubmitPackageTxResult>,
24+
/// List of txids of replaced transactions.
25+
#[serde(rename = "replaced-transactions")]
26+
pub replaced_transactions: Vec<Txid>,
27+
}
28+
29+
/// Models the per-transaction result included in the JSON-RPC method `submitpackage`.
30+
#[derive(Clone, Debug, PartialEq, Deserialize, Serialize)]
31+
pub struct SubmitPackageTxResult {
32+
/// The transaction id.
33+
pub txid: Txid,
34+
/// The [`Wtxid`] of a different transaction with the same [`Txid`] but different witness found in the mempool.
35+
///
36+
/// If set, this means the submitted transaction was ignored.
37+
#[serde(rename = "other-wtxid")]
38+
pub other_wtxid: Option<Wtxid>,
39+
/// Sigops-adjusted virtual transaction size.
40+
pub vsize: Option<usize>,
41+
/// Transaction fees.
42+
pub fees: Option<SubmitPackageTxResultFees>,
43+
/// The transaction error string, if it was rejected by the mempool
44+
pub error: Option<String>,
45+
}
46+
47+
/// Models the fees included in the per-transaction result of the JSON-RPC method `submitpackage`.
48+
#[derive(Clone, Debug, PartialEq, Deserialize, Serialize)]
49+
pub struct SubmitPackageTxResultFees {
50+
/// Transaction fee.
51+
#[serde(rename = "base")]
52+
pub base_fee: Amount,
53+
/// The effective feerate.
54+
///
55+
/// Will be `None` if the transaction was already in the mempool.
56+
///
57+
/// For example, the package feerate and/or feerate with modified fees from the `prioritisetransaction` JSON-RPC method.
58+
#[serde(rename = "effective-feerate")]
59+
pub effective_feerate: Option<FeeRate>,
60+
/// If [`Self::effective_feerate`] is provided, this holds the [`Wtxid`]s of the transactions
61+
/// whose fees and vsizes are included in effective-feerate.
62+
#[serde(rename = "effective-includes")]
63+
pub effective_includes: Vec<Wtxid>,
64+
}

json/src/v28/raw_transactions.rs

+38-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ use std::collections::HashMap;
99
use bitcoin::{Amount, FeeRate, Txid, Wtxid};
1010
use serde::{Deserialize, Serialize};
1111

12-
/// Models the result of JSON-RPC method `submitpackage`.
12+
use crate::model;
13+
14+
/// Result of JSON-RPC method `submitpackage`.
1315
//submitpackage ["rawtx",...] ( maxfeerate maxburnamount )
1416
//
1517
//Submit a package of raw transactions (serialized, hex-encoded) to local node.
@@ -74,6 +76,17 @@ pub struct SubmitPackage {
7476
pub replaced_transactions: Vec<Txid>,
7577
}
7678

79+
impl SubmitPackage {
80+
/// Converts version specific type to a version in-specific, more strongly typed type.
81+
pub fn into_model(self) -> model::SubmitPackage {
82+
model::SubmitPackage {
83+
package_msg: self.package_msg,
84+
tx_results: self.tx_results.into_iter().map(|(k, v)| (k, v.into_model())).collect(),
85+
replaced_transactions: self.replaced_transactions,
86+
}
87+
}
88+
}
89+
7790
/// Models the per-transaction result included in the JSON-RPC method `submitpackage`.
7891
#[derive(Clone, Debug, PartialEq, Deserialize, Serialize)]
7992
pub struct SubmitPackageTxResult {
@@ -92,6 +105,19 @@ pub struct SubmitPackageTxResult {
92105
pub error: Option<String>,
93106
}
94107

108+
impl SubmitPackageTxResult {
109+
/// Converts version specific type to a version in-specific, more strongly typed type.
110+
pub fn into_model(self) -> model::SubmitPackageTxResult {
111+
model::SubmitPackageTxResult {
112+
txid: self.txid,
113+
other_wtxid: self.other_wtxid,
114+
vsize: self.vsize,
115+
fees: self.fees.map(move |f| f.into_model()),
116+
error: self.error,
117+
}
118+
}
119+
}
120+
95121
/// Models the fees included in the per-transaction result of the JSON-RPC method `submitpackage`.
96122
#[derive(Clone, Debug, PartialEq, Deserialize, Serialize)]
97123
pub struct SubmitPackageTxResultFees {
@@ -110,3 +136,14 @@ pub struct SubmitPackageTxResultFees {
110136
#[serde(rename = "effective-includes")]
111137
pub effective_includes: Vec<Wtxid>,
112138
}
139+
140+
impl SubmitPackageTxResultFees {
141+
/// Converts version specific type to a version in-specific, more strongly typed type.
142+
pub fn into_model(self) -> model::SubmitPackageTxResultFees {
143+
model::SubmitPackageTxResultFees {
144+
base_fee: self.base_fee,
145+
effective_feerate: self.effective_feerate,
146+
effective_includes: self.effective_includes,
147+
}
148+
}
149+
}

0 commit comments

Comments
 (0)