-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix unconfirmed change note tracking in transactions #10
base: master
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -2,23 +2,62 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use std::fmt::{Debug, Display}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use zcash_primitives::{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
consensus::{self, BranchId}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
consensus::{self, BranchId, NetworkUpgrade}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
memo::MemoBytes, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sapling::prover::TxProver, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
transaction::{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
builder::Builder, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
components::{amount::DEFAULT_FEE, Amount}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Transaction, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
zip32::{ExtendedFullViewingKey, ExtendedSpendingKey}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use crate::WalletWrite; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use zcash_client_backend::{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
address::RecipientAddress, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
data_api::{error::Error, SentTransaction}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
data_api::{error::Error, ReceivedTransaction, SentTransaction}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
decrypt_transaction, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
wallet::{AccountId, OvkPolicy}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/// Scans a [`Transaction`] for any information that can be decrypted by the accounts in | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/// the wallet, and saves it to the wallet. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pub async fn decrypt_and_store_transaction<N, E, P, D>( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
params: &P, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
data: &mut D, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
tx: &Transaction, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) -> Result<(), E> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
where | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
E: From<Error<N>>, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
P: consensus::Parameters, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
D: WalletWrite<Error = E>, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Fetch the ExtendedFullViewingKeys we are tracking | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let extfvks = data.get_extended_full_viewing_keys().await?; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let max_height = data.block_height_extrema().await?.map(|(_, max)| max + 1); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let height = data | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.get_tx_height(tx.txid()) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.await? | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.or(max_height) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.or_else(|| params.activation_height(NetworkUpgrade::Sapling)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.ok_or(Error::SaplingNotActive)?; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let outputs = decrypt_transaction(params, height, tx, &extfvks); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if outputs.is_empty() { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Ok(()) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
data.store_received_tx(&ReceivedTransaction { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
tx, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
outputs: &outputs, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.await?; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Ok(()) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
#[allow(clippy::needless_doctest_main)] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/// Creates a transaction paying the specified address from the given account. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/// | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -182,8 +221,7 @@ where | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
RecipientAddress::Shielded(to) => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
builder.add_sapling_output(ovk, to.clone(), value, memo.clone()) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
RecipientAddress::Transparent(to) => builder.add_transparent_output(&to, value), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
RecipientAddress::Transparent(to) => builder.add_transparent_output(to, value), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.map_err(Error::Builder)?; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -209,6 +247,11 @@ where | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Automatically decrypt and store any outputs sent to our wallet, including change. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// This uses our viewing keys to find any outputs we can decrypt, creates decrypted | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// note data for spendability, and saves them to the wallet database. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
decrypt_and_store_transaction(params, wallet_db, &tx).await?; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
wallet_db | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.store_sent_tx(&SentTransaction { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looks like this store_sent_tx call stores the created transaction output in the walletdb. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
librustzcash/zcash_extras/src/wallet.rs Lines 24 to 60 in d78f4df
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Aha, we need to add the change as a received output, to fix the balance |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
tx: &tx, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -143,7 +143,7 @@ | |
to, | ||
note, | ||
memo: memo.unwrap_or_else(MemoBytes::empty), | ||
_params: PhantomData::default(), | ||
Check warning on line 146 in zcash_primitives/src/transaction/builder.rs GitHub Actions / Clippy (nightly)use of `default` to create a unit struct
Check warning on line 146 in zcash_primitives/src/transaction/builder.rs GitHub Actions / Clippy (nightly)use of `default` to create a unit struct
|
||
}) | ||
} | ||
|
||
|
@@ -320,7 +320,7 @@ | |
{ | ||
self.builders.push(TzeInputInfo { | ||
prevout: tzeout, | ||
builder: Box::new(move |ctx| builder(&ctx).map(|x| x.to_payload())), | ||
Check warning on line 323 in zcash_primitives/src/transaction/builder.rs GitHub Actions / Clippy (nightly)this expression creates a reference which is immediately dereferenced by the compiler
Check warning on line 323 in zcash_primitives/src/transaction/builder.rs GitHub Actions / Clippy (nightly)this expression creates a reference which is immediately dereferenced by the compiler
|
||
}); | ||
} | ||
} | ||
|
@@ -380,7 +380,7 @@ | |
_phantom: &'a PhantomData<P>, | ||
} | ||
|
||
impl<'a, P: consensus::Parameters> Builder<'a, P, OsRng> { | ||
Check warning on line 383 in zcash_primitives/src/transaction/builder.rs GitHub Actions / Clippy (nightly)the following explicit lifetimes could be elided: 'a
Check warning on line 383 in zcash_primitives/src/transaction/builder.rs GitHub Actions / Clippy (nightly)the following explicit lifetimes could be elided: 'a
|
||
/// Creates a new `Builder` targeted for inclusion in the block with the given height, | ||
/// using default values for general transaction fields and the default OS random. | ||
/// | ||
|
@@ -634,7 +634,6 @@ | |
// Change output | ||
// | ||
|
||
/* | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As I can see, the change output is added in KDF code. I hope this won't affect that code. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I see. Thanks a lot.. |
||
if change.is_positive() { | ||
// Send change to the specified change address. If no change address | ||
// was set, send change to the first Sapling address given as input. | ||
|
@@ -655,7 +654,6 @@ | |
|
||
self.add_sapling_output(Some(change_address.0), change_address.1, change, None)?; | ||
} | ||
*/ | ||
|
||
// | ||
// Record initial positions of spends and outputs | ||
|
@@ -847,7 +845,7 @@ | |
// witness to commit to at the time it was added to the transaction builder; here, it then computes those | ||
// commitments. | ||
let (mode, payload) = (tze_in.builder)(&self.mtx)?; | ||
let mut current = self.mtx.tze_inputs.get_mut(i).unwrap(); | ||
Check warning on line 848 in zcash_primitives/src/transaction/builder.rs GitHub Actions / Clippy (nightly)variable does not need to be mutable
Check warning on line 848 in zcash_primitives/src/transaction/builder.rs GitHub Actions / Clippy (nightly)variable does not need to be mutable
|
||
if mode != current.witness.mode { | ||
return Err(Error::TzeWitnessModeMismatch(current.witness.mode, mode)); | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Without this code we would need to wait until the block is scanned, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
right
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
with the case above, we need this fix in kdf directly after building txs..