script updates, swap params on createLitecoinWalletService

This commit is contained in:
Matthew Fosse 2024-09-09 14:04:49 -07:00
parent dc77dee849
commit fd578dd530
5 changed files with 9 additions and 6 deletions

View file

@ -109,9 +109,8 @@ jobs:
# paths are reset after each step, so we need to set them again:
export PATH=$PATH:/usr/local/go/bin
export PATH=$PATH:~/go/bin
# build mwebd:
cd /opt/android/cake_wallet/scripts/android/
./build_mwebd.sh
./build_mwebd.sh --dont-install
- name: Generate KeyStore
run: |

View file

@ -106,7 +106,7 @@ jobs:
export PATH=$PATH:~/go/bin
# build mwebd:
cd /opt/android/cake_wallet/scripts/android/
./build_mwebd.sh
./build_mwebd.sh --dont-install
- name: Generate localization
run: |

View file

@ -1000,8 +1000,8 @@ Future<void> setup({
return bitcoin!.createLitecoinWalletService(
_walletInfoSource,
_unspentCoinsInfoSource,
getIt.get<SettingsStore>().mwebAlwaysScan,
SettingsStoreBase.walletPasswordDirectInput,
getIt.get<SettingsStore>().mwebAlwaysScan,
);
case WalletType.ethereum:
return ethereum!.createEthereumWalletService(

View file

@ -1,4 +1,6 @@
if [[ "$1" == "--install" ]]; then
if [[ "$1" == "--dont-install" ]]; then
echo "Skipping Go installation as per --dont-install flag"
else
# install go > 1.23:
wget https://go.dev/dl/go1.23.1.linux-amd64.tar.gz
sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf go1.23.1.linux-amd64.tar.gz

View file

@ -1,5 +1,7 @@
#!/bin/bash
if [[ "$1" == "--install" ]]; then
if [[ "$1" == "--dont-install" ]]; then
echo "Skipping Go installation as per --dont-install flag"
else
# install go > 1.23:
brew install go
export PATH=$PATH:~/go/bin