Fix typos

This commit is contained in:
Dimitris Apostolou
2019-09-19 17:10:44 +03:00
parent 0d874c2dec
commit 09b9181939
4 changed files with 11 additions and 11 deletions

View File

@@ -363,14 +363,14 @@ impl OutgoingTxMetadata {
pub struct WalletTx {
pub block: i32,
// Txid of this transcation. It's duplicated here (It is also the Key in the HashMap that points to this
// Txid of this transaction. It's duplicated here (It is also the Key in the HashMap that points to this
// WalletTx in LightWallet::txs)
pub txid: TxId,
// List of all notes recieved in this tx. Some of these might be change notes.
// List of all notes received in this tx. Some of these might be change notes.
pub notes: Vec<SaplingNoteData>,
// List of all Utxos recieved in this Tx. Some of these might be change notes
// List of all Utxos received in this Tx. Some of these might be change notes
pub utxos: Vec<Utxo>,
// Total shielded value spent in this Tx. Note that this is the value of the wallet's notes spent.