Refactor transaction 'id' property to 'txid'
This commit is contained in:
parent
a68a8bee7d
commit
d53eb793ea
@ -70,7 +70,7 @@ dictionary TransactionDetails {
|
|||||||
u64? fees;
|
u64? fees;
|
||||||
u64 received;
|
u64 received;
|
||||||
u64 sent;
|
u64 sent;
|
||||||
string id;
|
string txid;
|
||||||
};
|
};
|
||||||
|
|
||||||
dictionary Confirmation {
|
dictionary Confirmation {
|
||||||
|
@ -66,7 +66,7 @@ pub struct TransactionDetails {
|
|||||||
pub fees: Option<u64>,
|
pub fees: Option<u64>,
|
||||||
pub received: u64,
|
pub received: u64,
|
||||||
pub sent: u64,
|
pub sent: u64,
|
||||||
pub id: String,
|
pub txid: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
type Confirmation = ConfirmationTime;
|
type Confirmation = ConfirmationTime;
|
||||||
@ -86,7 +86,7 @@ impl From<&bdk::TransactionDetails> for TransactionDetails {
|
|||||||
fn from(x: &bdk::TransactionDetails) -> TransactionDetails {
|
fn from(x: &bdk::TransactionDetails) -> TransactionDetails {
|
||||||
TransactionDetails {
|
TransactionDetails {
|
||||||
fees: x.fee,
|
fees: x.fee,
|
||||||
id: x.txid.to_string(),
|
txid: x.txid.to_string(),
|
||||||
received: x.received,
|
received: x.received,
|
||||||
sent: x.sent,
|
sent: x.sent,
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user