From b2cf132f0c73e5fa9d6eb2c084baa096ce0d1c81 Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Thu, 21 Oct 2021 10:06:25 -0400 Subject: [PATCH] Update binary name in tests and old example script --- migratecoin.sh | 6 +++--- qa/hush/full_test_suite.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/migratecoin.sh b/migratecoin.sh index 6f1ca9773..95aea910c 100644 --- a/migratecoin.sh +++ b/migratecoin.sh @@ -11,7 +11,7 @@ address="Rxxx" amount=1 # Alias for running cli on source chain -cli_source="komodo-cli -ac_name=$source" +cli_source="hush-cli -ac_name=$source" # Raw tx that we will work with txraw=`$cli_source createrawtransaction "[]" "{\"$address\":$amount}"` @@ -37,7 +37,7 @@ read -p "Wait for a notarization to HUSH, and then two more notarizations from t # Create import importTx=`$cli_source migrate_createimporttransaction $exportSignedTx $payouts` -importTx=`komodo-cli migrate_completeimporttransaction $importTx` +importTx=`hush-cli migrate_completeimporttransaction $importTx` # Send import -komodo-cli -ac_name=$target sendrawtransaction $importTx +hush-cli -ac_name=$target sendrawtransaction $importTx diff --git a/qa/hush/full_test_suite.py b/qa/hush/full_test_suite.py index ca36d2b91..87fcc6ac0 100755 --- a/qa/hush/full_test_suite.py +++ b/qa/hush/full_test_suite.py @@ -145,7 +145,7 @@ STAGES = [ STAGE_COMMANDS = { 'btest': [repofile('src/test/test_bitcoin'), '-p'], - 'gtest': [repofile('src/komodo-gtest')], + 'gtest': [repofile('src/hush-gtest')], 'sec-hard': check_security_hardening, 'no-dot-so': ensure_no_dot_so_in_depends, 'util-test': util_test,