Skip to content

Commit

Permalink
Manual merge conflict resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
luc-blaeser committed Apr 29, 2024
1 parent f40906f commit 169d0ea
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions rs/execution_environment/src/canister_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2138,12 +2138,12 @@ impl AsErrorHelp for CanisterManagerError {
| CanisterManagerError::WasmChunkStoreError { .. }
| CanisterManagerError::CanisterSnapshotNotFound { .. }
| CanisterManagerError::CanisterHeapDeltaRateLimited { .. }
| CanisterManagerError::CanisterSnapshotInvalidOwnership { .. } => {
ErrorHelp::UserError {
suggestion: "".to_string(),
doc_link: "".to_string(),
}
}
| CanisterManagerError::CanisterSnapshotInvalidOwnership { .. }
| CanisterManagerError::MissingUpgradeOptionError { .. }
| CanisterManagerError::InvalidUpgradeOptionError { .. } => ErrorHelp::UserError {
suggestion: "".to_string(),
doc_link: "".to_string(),
},
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion rs/execution_environment/src/execution/upgrade.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ use ic_management_canister_types::{
CanisterInstallModeV2, CanisterUpgradeOptions, WasmMemoryPersistence,
};
use ic_replicated_state::{
metadata_state::subnet_call_context_manager::InstallCodeCallId, CanisterState,
metadata_state::subnet_call_context_manager::InstallCodeCallId, CanisterState, ExecutionState,
};
use ic_system_api::ApiType;
use ic_types::methods::{FuncRef, SystemMethod, WasmMethod};
Expand Down

0 comments on commit 169d0ea

Please sign in to comment.