Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
Signed-off-by: Naohiro Yoshida <[email protected]>
  • Loading branch information
Naohiro Yoshida committed May 14, 2024
1 parent 98822f2 commit 8090980
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: setup
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: lint
uses: golangci/golangci-lint-action@v3
uses: golangci/golangci-lint-action@v6
with:
version: v1.58
# still using the deprecated types in ibc-go v8
Expand All @@ -34,11 +34,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: setup
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: test
Expand Down
2 changes: 0 additions & 2 deletions e2e/chains/bsc/docker-compose.bsc.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: "3.8"

services:
bsc-geth:
build:
Expand Down
2 changes: 0 additions & 2 deletions e2e/chains/bsc/docker-compose.simple.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: "3.8"

volumes:
bsc-rpc:
bsc-validator1-1:
Expand Down
2 changes: 1 addition & 1 deletion e2e/chains/bsc/scripts/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function init_validator() {
echo ${validatorAddr} >${workspace}/storage/${node_id}/address

# create new BLS vote address
expect ${workspace}/scripts/create_bls_key.sh ${workspace}/storage/${node_id}
expect ${workspace}/scripts/create_bls_key.sh ${workspace}/storage/${node_id}
voteAddr=0x$(cat ${workspace}/storage/${node_id}/bls/keystore/*json| jq .pubkey | sed 's/"//g')
echo $voteAddr

Expand Down

0 comments on commit 8090980

Please sign in to comment.