Remove possible mix up of timelocks when using State0::new

This commit is contained in:
Franck Royer 2021-02-08 14:39:27 +11:00
parent f35ed436ce
commit 530b9b2ea8
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4
2 changed files with 5 additions and 6 deletions

View File

@ -178,8 +178,7 @@ impl Builder {
let state0 = State0::new(
amounts.btc,
amounts.xmr,
self.execution_params.bitcoin_cancel_timelock,
self.execution_params.bitcoin_punish_timelock,
self.execution_params,
self.bitcoin_wallet.as_ref(),
&mut OsRng,
)

View File

@ -6,6 +6,7 @@ use crate::{
wait_for_cancel_timelock_to_expire, GetBlockHeight, TransactionBlockHeight, TxCancel,
TxRefund, WatchForRawTransaction,
},
execution_params::ExecutionParams,
monero,
protocol::{
alice::{Message1, Message3, TransferProof},
@ -104,8 +105,7 @@ impl State0 {
pub async fn new<R>(
btc: bitcoin::Amount,
xmr: monero::Amount,
cancel_timelock: Timelock,
punish_timelock: Timelock,
execution_params: ExecutionParams,
bitcoin_wallet: &bitcoin::Wallet,
rng: &mut R,
) -> Result<Self>
@ -128,8 +128,8 @@ impl State0 {
punish_address,
btc,
xmr,
cancel_timelock,
punish_timelock,
cancel_timelock: execution_params.bitcoin_cancel_timelock,
punish_timelock: execution_params.bitcoin_punish_timelock,
})
}