Skip to content
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: Only accept a rollover offer if the contract has been confirmed. #2633

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions coordinator/src/bin/coordinator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -263,11 +263,10 @@ async fn main() -> Result<()> {
node.inner.oracle_pubkey,
);
let _handle = rollover::monitor(
pool.clone(),
node.clone(),
node_event_handler.subscribe(),
notification_service.get_sender(),
network,
node.clone(),
);
let _handle = collaborative_revert::monitor(
pool.clone(),
Expand Down
25 changes: 16 additions & 9 deletions coordinator/src/node/rollover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ use anyhow::Result;
use bitcoin::secp256k1::PublicKey;
use bitcoin::Network;
use diesel::r2d2::ConnectionManager;
use diesel::r2d2::Pool;
use diesel::r2d2::PooledConnection;
use diesel::PgConnection;
use dlc_manager::contract::contract_input::ContractInput;
Expand All @@ -39,11 +38,10 @@ use xxi_node::node::event::NodeEvent;
use xxi_node::node::ProtocolId;

pub fn monitor(
pool: Pool<ConnectionManager<PgConnection>>,
node: Node,
mut receiver: broadcast::Receiver<NodeEvent>,
notifier: mpsc::Sender<Notification>,
network: Network,
node: Node,
) -> RemoteHandle<()> {
let (fut, remote_handle) = async move {
loop {
Expand All @@ -52,10 +50,9 @@ pub fn monitor(
tokio::spawn({
let notifier = notifier.clone();
let node = node.clone();
let pool = pool.clone();
async move {
if let Err(e) = node
.check_if_eligible_for_rollover(pool, notifier, peer, network)
.check_if_eligible_for_rollover(notifier, peer, network)
.await
{
tracing::error!(
Expand Down Expand Up @@ -87,14 +84,16 @@ pub fn monitor(
impl Node {
async fn check_if_eligible_for_rollover(
&self,
pool: Pool<ConnectionManager<PgConnection>>,
notifier: mpsc::Sender<Notification>,
trader_id: PublicKey,
network: Network,
) -> Result<()> {
let mut conn = spawn_blocking(move || pool.get())
.await
.expect("task to complete")?;
let mut conn = spawn_blocking({
let pool = self.pool.clone();
move || pool.get()
})
.await
.expect("task to complete")?;

tracing::debug!(%trader_id, "Checking if the user's position is eligible for rollover");

Expand Down Expand Up @@ -181,6 +180,14 @@ impl Node {
) -> Result<()> {
let trader_pubkey = position.trader;

if !self
.inner
.check_if_signed_channel_is_confirmed(trader_pubkey)
.await?
{
bail!("Cannot rollover a contract that is not confirmed");
}

let next_expiry = commons::calculate_next_expiry(OffsetDateTime::now_utc(), network);

let (oracle_pk, contract_tx_fee_rate) = {
Expand Down
91 changes: 54 additions & 37 deletions mobile/native/src/dlc/node.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use crate::db;
use crate::dlc::check_if_signed_channel_is_confirmed;
use crate::event;
use crate::event::BackgroundTask;
use crate::event::EventInternal;
Expand Down Expand Up @@ -26,6 +27,7 @@ use dlc_messages::channel::OfferChannel;
use dlc_messages::channel::Reject;
use dlc_messages::channel::RenewOffer;
use dlc_messages::channel::SettleOffer;
use futures::executor::block_on;
use itertools::Itertools;
use lightning::chain::transaction::OutPoint;
use lightning::sign::DelayedPaymentOutputDescriptor;
Expand Down Expand Up @@ -744,46 +746,61 @@ impl Node {
)?;

let channel_id = offer.renew_offer.channel_id;
if !block_on(check_if_signed_channel_is_confirmed())? {
tracing::warn!(
"Rejecting rollover offer as the DLC channel has not been confirmed yet."
);

match self.inner.dlc_manager.accept_renew_offer(&channel_id) {
Ok((renew_accept, node_id)) => {
let positions = get_positions()?;
let position = positions.first().context("No position to roll over")?;

let new_unpaid_funding_fee_events = handle_unpaid_funding_fee_events(
&offer
.funding_fee_events
.iter()
.map(|e| {
FundingFeeEvent::unpaid(
position.contract_symbol,
Decimal::try_from(position.quantity).expect("to fit"),
position.direction,
e.price,
e.funding_fee,
e.due_date,
)
})
.collect_vec(),
)?;

handle_rollover_offer(expiry_timestamp, &new_unpaid_funding_fee_events)?;

self.send_dlc_message(
to_secp_pk_30(node_id),
TenTenOneMessage::RolloverAccept(TenTenOneRolloverAccept { renew_accept }),
)?;
}
Err(e) => {
tracing::error!("Failed to accept DLC channel rollover offer: {e}");
event::publish(&EventInternal::BackgroundNotification(
BackgroundTask::Rollover(TaskStatus::Failed(
"Failed to rollover with unconfirmed DLC channel.".to_string(),
)),
));

self.reject_rollover_offer(&channel_id)?;
} else {
tracing::warn!("DLC channel is confirmed. Accepting rollover offer.");

match self.inner.dlc_manager.accept_renew_offer(&channel_id) {
Ok((renew_accept, node_id)) => {
let positions = get_positions()?;
let position = positions.first().context("No position to roll over")?;

let new_unpaid_funding_fee_events = handle_unpaid_funding_fee_events(
&offer
.funding_fee_events
.iter()
.map(|e| {
FundingFeeEvent::unpaid(
position.contract_symbol,
Decimal::try_from(position.quantity).expect("to fit"),
position.direction,
e.price,
e.funding_fee,
e.due_date,
)
})
.collect_vec(),
)?;

handle_rollover_offer(expiry_timestamp, &new_unpaid_funding_fee_events)?;

self.send_dlc_message(
to_secp_pk_30(node_id),
TenTenOneMessage::RolloverAccept(TenTenOneRolloverAccept { renew_accept }),
)?;
}
Err(e) => {
tracing::error!("Failed to accept DLC channel rollover offer: {e}");

event::publish(&EventInternal::BackgroundNotification(
BackgroundTask::Rollover(TaskStatus::Failed(format!("{e}"))),
));
event::publish(&EventInternal::BackgroundNotification(
BackgroundTask::Rollover(TaskStatus::Failed(format!("{e}"))),
));

self.reject_rollover_offer(&channel_id)?;
}
};
self.reject_rollover_offer(&channel_id)?;
}
};
}

Ok(())
}
Expand Down
Loading