diff --git a/src/silentpayments.rs b/src/silentpayments.rs index c338bf6..8442578 100644 --- a/src/silentpayments.rs +++ b/src/silentpayments.rs @@ -30,15 +30,6 @@ pub fn create_transaction( .filter(|(outpoint, _)| !freezed_utxos.contains(outpoint)) .collect(); - // if we have a payload, it means we are notifying, so let's add a revokation output - if payload.is_some() { - recipients.push(Recipient { - address: sp_wallet.get_client().get_receiving_address(), - amount: DUST_THRESHOLD, - nb_outputs: 1, - }) - } - let sum_outputs = recipients .iter() .fold(Amount::from_sat(0), |acc, x| acc + x.amount);