Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…rontend into develop
  • Loading branch information
jian-guo-s committed Oct 27, 2023
2 parents 7823eff + abaf3dc commit 8868532
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import type { DeployRecord,DeployStep,ContractBuild,DeployParams} from '../Deplo
import {callContract, deployContract, deployProxyContract, getTransaction, upgradeProxyContract} from "./evm";
import {apiUpdateExecuteInfo} from "@/apis/contractOrchestrationDeploy";
import {apiProjectsContractDeploy} from "@/apis/projects";
import {message} from "ant-design-vue";



Expand Down Expand Up @@ -228,6 +229,10 @@ export default class NewEngine {
}

public stop(): void {
if (this.isRunning === false) {
message.warning("deployment contract not running")
return
}
this.isRunning = false;
console.log("Workflow has been stopped.");
}
Expand Down

0 comments on commit 8868532

Please sign in to comment.