From b6a451dc8d25362313fa0de7308275303d20e785 Mon Sep 17 00:00:00 2001 From: Vladimir Domnich Date: Wed, 31 Aug 2022 16:52:29 +0400 Subject: [PATCH] Fix path to inner ring wallet for devenv It was updated in https://github.com/nspcc-dev/neofs-dev-env/commit/587a6b3eec4d8c1c0c9708b473d021698ea6c42f Signed-off-by: Vladimir Domnich --- configuration/devenv.yml | 2 +- robot/variables/common.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configuration/devenv.yml b/configuration/devenv.yml index f52ca36..2584982 100644 --- a/configuration/devenv.yml +++ b/configuration/devenv.yml @@ -74,7 +74,7 @@ mainnet_wallet_path: '../neofs-dev-env/services/chain/node-wallet.json' mainnet_wallet_config: 'neofs_cli_configs/one_wallet_password.yml' mainnet_single_addr: 'NfgHwwTi3wHAS8aFAN243C5vGbkYDpqLHP' mainnet_wallet_pass: 'one' -ir_wallet_path: '../neofs-dev-env/services/ir/wallet01.json' +ir_wallet_path: '../neofs-dev-env/services/ir/az.json' ir_wallet_config: 'neofs_cli_configs/one_wallet_password.yml' ir_wallet_pass: 'one' storage_wallet_path: '../neofs-dev-env/services/storage/wallet01.json' diff --git a/robot/variables/common.py b/robot/variables/common.py index c6dcfcd..862c1e5 100644 --- a/robot/variables/common.py +++ b/robot/variables/common.py @@ -91,7 +91,7 @@ MAINNET_WALLET_CONFIG = os.getenv("MAINNET_WALLET_CONFIG", f"{CLI_CONFIGS_PATH}/ MAINNET_SINGLE_ADDR = os.getenv("MAINNET_SINGLE_ADDR", "NfgHwwTi3wHAS8aFAN243C5vGbkYDpqLHP") MAINNET_WALLET_PASS = os.getenv("MAINNET_WALLET_PASS", "one") -IR_WALLET_PATH = os.getenv("IR_WALLET_PATH", f"{DEVENV_PATH}/services/ir/wallet01.json") +IR_WALLET_PATH = os.getenv("IR_WALLET_PATH", f"{DEVENV_PATH}/services/ir/az.json") IR_WALLET_CONFIG = os.getenv("IR_WALLET_CONFIG", f"{CLI_CONFIGS_PATH}/one_wallet_password.yml") IR_WALLET_PASS = os.getenv("IR_WALLET_PASS", "one")