mirror of
https://github.com/Qortal/piratewallet-light-cli.git
synced 2025-07-30 03:41:28 +00:00
split notes into spent and unspent
This commit is contained in:
@@ -138,7 +138,10 @@ impl LightClient {
|
||||
|
||||
// Return a list of all notes, spent and unspent
|
||||
pub fn do_list_notes(&self) -> JsonValue {
|
||||
JsonValue::Array(
|
||||
let mut unspent_notes: Vec<JsonValue> = vec![];
|
||||
let mut spent_notes : Vec<JsonValue> = vec![];
|
||||
let mut pending_notes: Vec<JsonValue> = vec![];
|
||||
|
||||
self.wallet.txs.read().unwrap().iter()
|
||||
.flat_map( |(txid, wtx)| {
|
||||
wtx.notes.iter().map(move |nd|
|
||||
@@ -153,8 +156,21 @@ impl LightClient {
|
||||
}
|
||||
)
|
||||
})
|
||||
.collect::<Vec<JsonValue>>()
|
||||
)
|
||||
.for_each( |note| {
|
||||
if note["spent"].is_null() && note["unconfirmed_spent"].is_null() {
|
||||
unspent_notes.push(note);
|
||||
} else if !note["spent"].is_null() {
|
||||
spent_notes.push(note);
|
||||
} else {
|
||||
pending_notes.push(note);
|
||||
}
|
||||
});
|
||||
|
||||
object!{
|
||||
"spent_notes" => spent_notes,
|
||||
"unspent_notes" => unspent_notes,
|
||||
"pending_notes" => pending_notes
|
||||
}
|
||||
}
|
||||
|
||||
pub fn do_list_transactions(&self) -> JsonValue {
|
||||
|
Reference in New Issue
Block a user