From fbd8b5d01e7255b89d31047758914f68a079c6aa Mon Sep 17 00:00:00 2001 From: Andy Golay Date: Sat, 24 Aug 2024 10:29:06 -0400 Subject: [PATCH] test: set seed to empty string for testing --- .github/scripts/update_move_toml.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/update_move_toml.sh b/.github/scripts/update_move_toml.sh index bbabef557..440538b14 100644 --- a/.github/scripts/update_move_toml.sh +++ b/.github/scripts/update_move_toml.sh @@ -18,7 +18,7 @@ RANDOM_SEED=$(shuf -i 0-1000000 -n 1) echo "Seed: $RANDOM_SEED" # Derive the resource account address using the random seed -RESOURCE_OUTPUT=$(aptos account derive-resource-account-address --address "$ADDRESS" --seed "$RANDOM_SEED" 2>&1) +RESOURCE_OUTPUT=$(aptos account derive-resource-account-address --address "$ADDRESS" --seed "" 2>&1) echo "Resource address derivation output: $RESOURCE_OUTPUT" # Extract the resource address directly