From 7253662014e5ea4f4a22a94c3cfc5e7d102ae618 Mon Sep 17 00:00:00 2001 From: osrm <90407222+osrm@users.noreply.github.com> Date: Fri, 2 Aug 2024 10:28:01 +0900 Subject: [PATCH 1/2] chore: correction typos (#9) Fixed typos to make the documentation clearer. Hope this helps. --- docs/transaction-impl-spec.md | 4 ++-- x/finality/README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/transaction-impl-spec.md b/docs/transaction-impl-spec.md index d21a45caf..fc82b8c7c 100644 --- a/docs/transaction-impl-spec.md +++ b/docs/transaction-impl-spec.md @@ -159,7 +159,7 @@ member required to authorize spending using `unbonding_script` or `slashing_scri - `staking_amout` - chosen by the user, it will be placed in `staking_output.value` - `btc_network` - btc network on which staking transactions will take place -#### Building OP_RETRUN and staking output implementation +#### Building OP_RETURN and staking output implementation The Babylon staking library exposes the [BuildV0IdentifiableStakingOutputsAndTx](../btcstaking/identifiable_staking.go?plain=1#L231) function with the following signature: @@ -324,7 +324,7 @@ import ( "github.com/btcsuite/btcd/btcutil/psbt" ) -func BuildPsbtForSigningUnbondingTransaciton( +func BuildPsbtForSigningUnbondingTransaction( unbondingTx *wire.MsgTx, stakingOutput *wire.TxOut, stakerKey *btcec.PublicKey, diff --git a/x/finality/README.md b/x/finality/README.md index aae159c08..a6aa17399 100644 --- a/x/finality/README.md +++ b/x/finality/README.md @@ -2,7 +2,7 @@ Babylon's BTC Staking protocol introduces an additional consensus round on blocks produced by CometBFT, called the finality round. The participants of this -round are referred as finality providers and their voting power stems from +round are referred to as finality providers and their voting power stems from staked bitcoins delegated to them. The Finality module is responsible for handling finality votes, maintaining the @@ -12,7 +12,7 @@ in the finalization rounds. This includes: - handling requests for submitting finality votes from finality providers; - maintaining the finalization status of blocks; - identifying sluggish finality providers; and -- maintaining equivocation evidences of culpable finality providers. +- maintaining equivocation evidence of culpable finality providers. ## Table of contents From 5699a526be8ee5bfe425e69243a4a95bcae1fd5b Mon Sep 17 00:00:00 2001 From: liam-icheng-lai <165125770+liam-icheng-lai@users.noreply.github.com> Date: Mon, 5 Aug 2024 16:55:07 -0700 Subject: [PATCH 2/2] babylonlabs migration for github action (#10) Co-authored-by: Liam Lai --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 859d3b1cf..4be07bef5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ on: jobs: lint_test: - uses: babylonchain/.github/.github/workflows/reusable_go_lint_test.yml@v0.1.0 + uses: babylonlabs-io/.github/.github/workflows/reusable_go_lint_test.yml@v0.2.1 with: run-unit-tests: true run-integration-tests: true @@ -16,7 +16,7 @@ jobs: sudo make test-e2e docker_pipeline: - uses: babylonchain/.github/.github/workflows/reusable_docker_pipeline.yml@v0.1.0 + uses: babylonlabs-io/.github/.github/workflows/reusable_docker_pipeline.yml@v0.2.1 secrets: inherit with: publish: false