Skip to content

make a couple wallet bool values pointers to not add a false value if not in the config #454

make a couple wallet bool values pointers to not add a false value if not in the config

make a couple wallet bool values pointers to not add a false value if not in the config #454

Workflow file for this run

name: Test/Lint/Fmt/Vet
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
container: golang:1
steps:
- uses: actions/checkout@v4
- name: Get latest chiavdf libs
run: |
apt-get update && apt-get install -y unzip libgmp-dev
LATEST_CHIAVDF=$(curl -s https://latest.cmm.io/chiavdf)
echo "Latest chiavdf is: $LATEST_CHIAVDF"
mkdir chiavdfc
cd chiavdfc || exit 1
wget https://github.com/Chia-Network/chiavdf/releases/download/$LATEST_CHIAVDF/chiavdfc-ubuntu-intel.zip
unzip chiavdfc-ubuntu-intel.zip
echo "CGO_CFLAGS=-I${GITHUB_WORKSPACE}/chiavdfc/chiavdfc-ubuntu-intel" >> "$GITHUB_ENV"
echo "CGO_LDFLAGS=-L${GITHUB_WORKSPACE}/chiavdfc/chiavdfc-ubuntu-intel/static" >> "$GITHUB_ENV"
- name: Test
run: make test