From 4358b1236c2bed6278099c61ee8260e55feb8837 Mon Sep 17 00:00:00 2001 From: c9s Date: Thu, 5 May 2022 01:33:52 +0800 Subject: [PATCH] fix env key generation --- scripts/setup-bollmaker.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/setup-bollmaker.sh b/scripts/setup-bollmaker.sh index c097db8cc..11a1d90ea 100755 --- a/scripts/setup-bollmaker.sh +++ b/scripts/setup-bollmaker.sh @@ -41,12 +41,12 @@ info "downloaded successfully" function gen_dotenv() { - read -p "Enter your MAX API key: " api_key - read -p "Enter your MAX API secret: " api_secret + read -p "Enter your Binance API key: " api_key + read -p "Enter your Binance API secret: " api_secret echo "Generating your .env.local file..." cat < .env.local -MAX_API_KEY=$api_key -MAX_API_SECRET=$api_secret +BINANCE_API_KEY=$api_key +BINANCE_API_SECRET=$api_secret END }