From c0fdc6d4b63be6d1bb7e44f694473ed79084999e Mon Sep 17 00:00:00 2001 From: Cifko Date: Thu, 28 Sep 2023 08:36:48 +0200 Subject: [PATCH] fix naming issues --- main.py | 6 +++--- protos.bat | 2 +- protos.sh | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/main.py b/main.py index 89d15ab..84e7aa9 100644 --- a/main.py +++ b/main.py @@ -283,9 +283,9 @@ def check_executable(bins_folder: str, file_name: str): print_step("!!! YOU ARE USING EXECUTABLE BINARIES AND NOT COMPILING THE CODE !!!") print_step(f"Tari folder {TARI_BINS_FOLDER}") print_step(f"Tari dan folder {TARI_DAN_BINS_FOLDER}") - check_executable(TARI_BINS_FOLDER, "tari_base_node") - check_executable(TARI_BINS_FOLDER, "tari_console_wallet") - check_executable(TARI_BINS_FOLDER, "tari_miner") + check_executable(TARI_BINS_FOLDER, "minotari_node") + check_executable(TARI_BINS_FOLDER, "minotari_console_wallet") + check_executable(TARI_BINS_FOLDER, "minotari_miner") check_executable(TARI_DAN_BINS_FOLDER, "tari_indexer") check_executable(TARI_DAN_BINS_FOLDER, "tari_dan_wallet_daemon") check_executable(TARI_DAN_BINS_FOLDER, "tari_dan_wallet_cli") diff --git a/protos.bat b/protos.bat index 0c1b3f7..1c40443 100644 --- a/protos.bat +++ b/protos.bat @@ -1,3 +1,3 @@ pip install grpcio-tools mkdir protos -python -m grpc_tools.protoc --proto_path ../tari/applications/tari_app_grpc/proto/ --python_out=./protos --grpc_python_out=./protos ../tari/applications/tari_app_grpc/proto/*.proto +python -m grpc_tools.protoc --proto_path ../tari/applications/minotari_app_grpc/proto/ --python_out=./protos --grpc_python_out=./protos ../tari/applications/minotari_app_grpc/proto/*.proto diff --git a/protos.sh b/protos.sh index f5f5b87..e633bfc 100755 --- a/protos.sh +++ b/protos.sh @@ -1,3 +1,3 @@ #! /bin/bash pip3 install grpcio-tools -python3 -m grpc_tools.protoc --proto_path ../tari/applications/tari_app_grpc/proto/ --python_out=./protos --grpc_python_out=./protos ../tari/applications/tari_app_grpc/proto/*.proto +python3 -m grpc_tools.protoc --proto_path ../tari/applications/minotari_app_grpc/proto/ --python_out=./protos --grpc_python_out=./protos ../tari/applications/minotari_app_grpc/proto/*.proto