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: --initial-margin for dfx canister delete #3769

Merged
merged 3 commits into from
May 27, 2024
Merged
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

# UNRELEASED

### fix: `dfx canister delete` fails

`dfx canister delete` occasionally fails because it attempts to withdraw too many cycles from the canister before it is deleted.
Usually, `dfx` tries again with a larger margin of cycles, but sometimes this gets stuck.
It is now possible to use `--initial-margin` to manually supply a margin in case the automatic margin does not work.

### perf: improve sync command performance

Improves `sync` (eg. `dfx deploy`, `icx-asset sync`) performance by parallelization:
Expand Down
1 change: 1 addition & 0 deletions docs/cli-reference/dfx-canister.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,7 @@ You can use the following options with the `dfx canister delete` command.
| Option | Description |
|---------------------------------------------------|------------------------------------------------------------------------------------|
| `--no-withdrawal` | Do not withdrawal cycles, just delete the canister. |
| `--initial-margin <cycles>` | Leave this many cycles in the canister when withdrawing cycles. |
| `--to-subaccount` | Subaccount of the selected identity to deposit cycles to. |
| `--withdraw-cycles-to-dank` | Withdraw cycles to dank with the current principal. |
| `--withdraw-cycles-to-canister <principal>` | Withdraw cycles from canister(s) to the specified canister/wallet before deleting. |
Expand Down
20 changes: 16 additions & 4 deletions src/dfx/src/commands/canister/delete.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use crate::lib::operations::cycles_ledger::{
use crate::lib::root_key::fetch_root_key_if_needed;
use crate::util::assets::wallet_wasm;
use crate::util::blob_from_arguments;
use crate::util::clap::parsers::icrc_subaccount_parser;
use crate::util::clap::parsers::{cycle_amount_parser, icrc_subaccount_parser};
use anyhow::{bail, Context};
use candid::Principal;
use clap::Parser;
Expand All @@ -28,14 +28,14 @@ use ic_utils::interfaces::ManagementCanister;
use ic_utils::Argument;
use icrc_ledger_types::icrc1::account::{Account, Subaccount};
use num_traits::cast::ToPrimitive;
use slog::info;
use slog::{debug, info};
use std::convert::TryFrom;

const DANK_PRINCIPAL: Principal =
Principal::from_slice(&[0, 0, 0, 0, 0, 0xe0, 1, 0x11, 0x01, 0x01]); // Principal: aanaa-xaaaa-aaaah-aaeiq-cai

// "Couldn't send message" when deleting a canister: increase WITHDRAWAL_COST
const WITHDRAWAL_COST: u128 = 10_606_030_000; // 5% higher than a value observed ok locally
const WITHDRAWAL_COST: u128 = 30_000_000_000; // conservative estimate based on mainnet observation

/// Deletes a currently stopped canister.
#[derive(Parser)]
Expand Down Expand Up @@ -72,6 +72,10 @@ pub struct CanisterDeleteOpts {
)]
withdraw_cycles_to_dank_principal: Option<String>,

/// Leave this many cycles in the canister when withdrawing cycles.
#[arg(long, value_parser = cycle_amount_parser, conflicts_with("no_withdrawal"))]
initial_margin: Option<u128>,

/// Auto-confirm deletion for a non-stopped canister.
#[arg(long, short)]
yes: bool,
Expand All @@ -92,6 +96,7 @@ async fn delete_canister(
withdraw_cycles_to_dank: bool,
withdraw_cycles_to_dank_principal: Option<String>,
to_cycles_ledger_subaccount: Option<Subaccount>,
initial_margin: Option<u128>,
) -> DfxResult {
let log = env.get_logger();
let mut canister_id_store = env.get_canister_id_store()?;
Expand Down Expand Up @@ -218,12 +223,17 @@ async fn delete_canister(
let cycles = status.cycles.0.to_u128().unwrap();
let mut attempts = 0_u128;
loop {
let margin = WITHDRAWAL_COST + attempts * WITHDRAWAL_COST / 10;
let margin =
initial_margin.unwrap_or(WITHDRAWAL_COST) + attempts * WITHDRAWAL_COST / 10;
if margin >= cycles {
info!(log, "Too few cycles to withdraw: {}.", cycles);
break;
}
let cycles_to_withdraw = cycles - margin;
debug!(
log,
"Margin: {margin}. Withdrawing {cycles_to_withdraw} cycles."
);
let result = match withdraw_target {
WithdrawTarget::NoWithdrawal => Ok(()),
WithdrawTarget::Dank => {
Expand Down Expand Up @@ -341,6 +351,7 @@ pub async fn exec(
opts.withdraw_cycles_to_dank,
opts.withdraw_cycles_to_dank_principal,
opts.to_subaccount,
opts.initial_margin,
)
.await
} else if opts.all {
Expand All @@ -356,6 +367,7 @@ pub async fn exec(
opts.withdraw_cycles_to_dank,
opts.withdraw_cycles_to_dank_principal.clone(),
opts.to_subaccount,
opts.initial_margin,
)
.await?;
}
Expand Down
Loading