Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: set versions to test btc activation height #19

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion babylon
Submodule babylon updated 119 files
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ services:
container_name: babylondnode1
image: "babylonlabs-io/babylond"
command: >
babylond --home /babylondhome start --log_format 'plain' 2>&1 | tee /babylondhome/babylond.log
babylond --home /babylondhome start --log_format 'plain' --log_level debug 2>&1 | tee /babylondhome/babylond.log
cap_add:
- SYS_PTRACE
security_opt:
Expand Down
2 changes: 1 addition & 1 deletion deployments/btcstaking-bitcoind/artifacts/vigilante.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ babylon:
grpc-addr: https://babylondnode0:9090
account-prefix: bbn
keyring-backend: test
gas-adjustment: 1.5
gas-adjustment: 2
gas-prices: 2ubbn
key-directory: /home/vigilante/config
debug: true
Expand Down
2 changes: 1 addition & 1 deletion vigilante
Submodule vigilante updated 47 files
+38 −0 .github/workflows/backport.yml
+11 −0 .github/workflows/changelog-reminder.yml
+2 −2 .github/workflows/ci.yml
+11 −0 .github/workflows/goreleaser.yml
+2 −2 .github/workflows/publish.yml
+1 −0 .gitignore
+80 −0 .goreleaser.yml
+33 −275 CHANGELOG.md
+57 −1 Makefile
+3 −3 btcclient/interface.go
+9 −9 btcclient/query.go
+2 −0 btcstaking-tracker/btcslasher/bootstrapping_test.go
+4 −3 btcstaking-tracker/btcslasher/slasher.go
+3 −0 btcstaking-tracker/btcslasher/slasher_test.go
+2 −0 btcstaking-tracker/btcslasher/slasher_utils.go
+2 −1 btcstaking-tracker/stakingeventwatcher/expected_babylon_client.go
+5 −4 btcstaking-tracker/stakingeventwatcher/stakingeventwatcher.go
+2 −2 btcstaking-tracker/stakingeventwatcher/tracked_delegations.go
+1 −0 cmd/vigilante/cmd/submitter.go
+1 −0 e2etest/monitor_e2e_test.go
+2 −0 e2etest/submitter_e2e_test.go
+6 −5 e2etest/test_manager_btcstaking.go
+1 −1 go.mod
+2 −0 go.sum
+2 −1 monitor/btcscanner/block_handler.go
+16 −15 monitor/btcscanner/btc_scanner.go
+6 −6 monitor/btcscanner/btc_scanner_test.go
+4 −4 monitor/liveness_checker.go
+11 −10 monitor/liveness_checker_test.go
+7 −6 monitor/monitor.go
+15 −1 monitor/monitor_test.go
+24 −1 monitor/query.go
+1 −1 monitor/query_test.go
+1 −1 monitor/utils.go
+10 −10 reporter/bootstrapping.go
+5 −4 reporter/reporter.go
+1 −1 submitter/relayer/change_address_test.go
+48 −21 submitter/relayer/relayer.go
+2 −0 submitter/submitter.go
+3 −2 testutil/datagen/datagen.go
+4 −4 testutil/mocks/btcclient.go
+2 −2 types/btccache.go
+3 −2 types/btccache_test.go
+4 −5 types/ckpt_info.go
+2 −2 types/ckpt_record.go
+5 −5 types/genesis_info.go
+1 −1 types/genesis_info_test.go