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

[R4R] prepare for release v0.32.3-binance.6 #166

Merged
merged 6 commits into from
Dec 3, 2021
Merged
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
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