mirror of
https://github.com/creating2morrow/neveko.git
synced 2025-01-03 09:29:39 +00:00
fix expiration overwrite on prove payment retry
This commit is contained in:
parent
bc5086e6fa
commit
76d3e02c0c
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,6 @@ use std::sync::mpsc::{
|
|||
|
||||
use crate::{
|
||||
ADD_CONTACT_TIMEOUT_SECS,
|
||||
BLOCK_TIME_IN_SECS_EST,
|
||||
};
|
||||
|
||||
// TODO(c2m): better error handling with and error_tx/error_rx channel
|
||||
|
@ -705,6 +704,7 @@ fn send_payment_req(
|
|||
};
|
||||
log::debug!("creating transaction proof for: {}", &ptxp.hash);
|
||||
let get_txp: reqres::XmrRpcGetTxProofResponse = monero::get_tx_proof(ptxp).await;
|
||||
// TODO(c2m): error handling on failed tx proof generation
|
||||
// use the signature to create the FINALIZED transaction proof
|
||||
let ftxp: proof::TxProof = proof::TxProof {
|
||||
subaddress: ftxp_address,
|
||||
|
|
Loading…
Reference in a new issue