From 53478bbf6979532155414e8f3e592a86b423ec83 Mon Sep 17 00:00:00 2001 From: Prathiksha-Nataraja <90592522+Prathiksha-Nataraja@users.noreply.github.com> Date: Tue, 27 Jun 2023 13:32:31 +0530 Subject: [PATCH] chore: removed unused imports --- services/cosmvm/start_node.star | 2 -- services/cosmvm/wallet.star | 9 --------- 2 files changed, 11 deletions(-) delete mode 100644 services/cosmvm/wallet.star diff --git a/services/cosmvm/start_node.star b/services/cosmvm/start_node.star index 36f5ffeb..fa884a0b 100644 --- a/services/cosmvm/start_node.star +++ b/services/cosmvm/start_node.star @@ -1,9 +1,7 @@ -WALLET = "github.com/hugobyte/dive/services/cosmvm/wallet.star" START = "github.com/hugobyte/dive/services/cosmvm/start.sh" DEFAULT_CONTRACT_PATH = "github.com/hugobyte/dive/services/cosmvm/static_files/contracts" SERVICE_NAME = "cosmos" IMAGE = "archwaynetwork/archwayd:constantine" -RPC_PORT_KEY = "rpc" PATH = "/start-scripts/" CONTRACT_PATH = "/root/contracts/" CHAIN_ID = "my-chain" diff --git a/services/cosmvm/wallet.star b/services/cosmvm/wallet.star deleted file mode 100644 index b8e5cf29..00000000 --- a/services/cosmvm/wallet.star +++ /dev/null @@ -1,9 +0,0 @@ -def wallet(plan,service_name, wallet_name): - plan.print("creating the wallet") - - wallet_file = "{0}.json".format(wallet_name) - - execute_cmd = ExecRecipe(command=["archway", "accounts", "--add", "wallet-name", wallet_name],) - plan.exec(service_name="service_name",recipe=execute_cmd) - - return wallet_file \ No newline at end of file