diff --git a/pallets/investments/src/lib.rs b/pallets/investments/src/lib.rs index a7a482bad3..7998d3724d 100644 --- a/pallets/investments/src/lib.rs +++ b/pallets/investments/src/lib.rs @@ -613,18 +613,6 @@ impl Pallet { if amount.is_zero() { *maybe_order = None; } - // else { - // // nuno: check that this is ok. Amount == 0 removes the order, so - // // there's no point in processing a transfer of 0 which fails because it - // // would kill the account (< ED) - // Self::do_update_redeem_order( - // total_order, - // &who, - // investment_id, - // order, - // amount, - // )?; - // } Ok(cur_order_id) },