Check expiry before emitting first action

pull/12/head
Lucas Soriano del Pino 4 years ago
parent df4ffb65c9
commit f0ecc62748

@ -55,7 +55,7 @@ use async_trait::async_trait;
use ecdsa_fun::{adaptor::Adaptor, nonce::Deterministic}; use ecdsa_fun::{adaptor::Adaptor, nonce::Deterministic};
use futures::{ use futures::{
future::{select, Either}, future::{select, Either},
FutureExt, Future, FutureExt,
}; };
use genawaiter::sync::{Gen, GenBoxed}; use genawaiter::sync::{Gen, GenBoxed};
use sha2::Sha256; use sha2::Sha256;
@ -121,24 +121,33 @@ where
InsufficientXMR(monero::InsufficientFunds), InsufficientXMR(monero::InsufficientFunds),
} }
async fn poll_until_bitcoin_time<B>(bitcoin_client: &B, timestamp: u32) async fn poll_until(condition_future: impl Future<Output = bool> + Clone) {
where
B: MedianTime,
{
loop { loop {
if bitcoin_client.median_time().await >= timestamp { if condition_future.clone().await {
return; return;
} }
} }
} }
async fn bitcoin_time_is_gte<B>(bitcoin_client: &B, timestamp: u32) -> bool
where
B: MedianTime,
{
bitcoin_client.median_time().await >= timestamp
}
Gen::new_boxed(|co| async move { Gen::new_boxed(|co| async move {
let swap_result: Result<(), SwapFailed> = async { let swap_result: Result<(), SwapFailed> = async {
let btc_has_expired = bitcoin_time_is_gte(bitcoin_ledger, refund_timelock).shared();
if btc_has_expired.clone().await {
return Err(SwapFailed::TimelockReached);
}
co.yield_(Action::LockBitcoin(tx_lock.clone())).await; co.yield_(Action::LockBitcoin(tx_lock.clone())).await;
let poll_until_expiry = let poll_until_btc_has_expired = poll_until(btc_has_expired).shared();
poll_until_bitcoin_time(bitcoin_ledger, refund_timelock).shared(); futures::pin_mut!(poll_until_btc_has_expired);
futures::pin_mut!(poll_until_expiry);
// the source of this could be the database, this layer doesn't care // the source of this could be the database, this layer doesn't care
let transfer_proof = network.receive_transfer_proof(); let transfer_proof = network.receive_transfer_proof();
@ -156,7 +165,7 @@ where
xmr, xmr,
monero::MIN_CONFIRMATIONS, monero::MIN_CONFIRMATIONS,
), ),
poll_until_expiry.clone(), poll_until_btc_has_expired.clone(),
) )
.await .await
{ {
@ -173,7 +182,7 @@ where
let tx_redeem_published = match select( let tx_redeem_published = match select(
bitcoin_ledger.watch_for_raw_transaction(tx_redeem.txid()), bitcoin_ledger.watch_for_raw_transaction(tx_redeem.txid()),
poll_until_expiry, poll_until_btc_has_expired,
) )
.await .await
{ {

Loading…
Cancel
Save