Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Commit

Permalink
Merge pull request #166 from binance-chain/develop
Browse files Browse the repository at this point in the history
[P4R] prepare for release v0.32.3-binance.6
  • Loading branch information
forcodedancing authored Dec 3, 2021
2 parents ad097a6 + 9b6847a commit 75949c2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Changelog
## v0.32.3-binance.6
- [go] [\#163](https://github.com/binance-chain/bnc-tendermint/pull/163) update go version to 1.16
- [crypto] [\#164](https://github.com/binance-chain/bnc-tendermint/pull/164) fix infinite recursion in Secp256k1 String() method

## v0.32.3-binance.5
- [api] [\#150](https://github.com/binance-chain/bnc-tendermint/pull/150) relax tx querying
- [p2p] [\#151](https://github.com/binance-chain/bnc-tendermint/pull/151) return masked IP (not the actual IP) in addrbook#groupKey
Expand Down
2 changes: 1 addition & 1 deletion crypto/secp256k1/secp256k1.go
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ func (pubKey PubKeySecp256k1) Bytes() []byte {
}

func (pubKey PubKeySecp256k1) String() string {
return fmt.Sprintf("PubKeySecp256k1{%X}", pubKey[:])
return fmt.Sprintf("PubKeySecp256k1{%X}", [PubKeySecp256k1Size]byte(pubKey))
}

func (pubKey PubKeySecp256k1) Equals(other crypto.PubKey) bool {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/tendermint/tendermint

go 1.12
go 1.16

require (
github.com/VividCortex/gohistogram v1.0.0 // indirect
Expand Down

0 comments on commit 75949c2

Please sign in to comment.