Skip to content

Commit

Permalink
chore: release v0.14.0 (#239)
Browse files Browse the repository at this point in the history
cherry pick a69c053
  • Loading branch information
RafilxTenfen authored Dec 21, 2024
1 parent cb9e0d5 commit 709e2c2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

## Unreleased

* [#240](https://github.com/babylonlabs-io/finality-provider/pull/240) fix removed printf in cmd command

## v0.14.0

### Improvements

* [#207](https://github.com/babylonlabs-io/finality-provider/pull/207) create finality provider from JSON file
Expand Down Expand Up @@ -124,7 +128,7 @@ finality vote submission

* [#117](https://github.com/babylonlabs-io/finality-provider/pull/117) Spec of
commit public randomness
* [#130](https://github.com/babylonlabs-io/finality-provider/pull/130) Finality
* [#130](https://github.com/babylonlabs-io/finality-provider/pull/130) Finality
Provider operation documentation

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions eotsmanager/cmd/eotsd/daemon/keys.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ import (
"bytes"
"encoding/json"
"fmt"
"github.com/btcsuite/btcd/btcec/v2/schnorr"
"io"

"github.com/btcsuite/btcd/btcec/v2/schnorr"

"github.com/babylonlabs-io/babylon/types"
"github.com/babylonlabs-io/finality-provider/eotsmanager"
"github.com/babylonlabs-io/finality-provider/eotsmanager/config"
Expand Down Expand Up @@ -121,7 +122,6 @@ func saveKeyNameMapping(cmd *cobra.Command, keyName string) (*types.BIP340PubKey
return nil, fmt.Errorf("failed to save key name mapping: %w", err)
}

cmd.Printf("Successfully wrote key name %s to mapping", keyName)
return eotsPk, nil
}

Expand Down

0 comments on commit 709e2c2

Please sign in to comment.