mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-10 20:01:20 +00:00
add missing changelog entries (#2224)
This commit is contained in:
committed by
Ethan Buchman
parent
728d2ed266
commit
eb98f1c3a9
@ -10,10 +10,12 @@ BREAKING CHANGES:
|
|||||||
- [abci] Added address of the original proposer of the block to Header.
|
- [abci] Added address of the original proposer of the block to Header.
|
||||||
- [abci] Change ABCI Header to match Tendermint exactly
|
- [abci] Change ABCI Header to match Tendermint exactly
|
||||||
- [libs] Remove cmn.Fmt, in favor of fmt.Sprintf
|
- [libs] Remove cmn.Fmt, in favor of fmt.Sprintf
|
||||||
|
- [blockchain] fix go-amino routes for blockchain messages
|
||||||
- [crypto] Rename AminoRoute variables to no longer be prefixed by signature type.
|
- [crypto] Rename AminoRoute variables to no longer be prefixed by signature type.
|
||||||
- [config] Replace MaxNumPeers with MaxNumInboundPeers and MaxNumOutboundPeers
|
- [config] Replace MaxNumPeers with MaxNumInboundPeers and MaxNumOutboundPeers
|
||||||
|
|
||||||
FEATURES:
|
FEATURES:
|
||||||
|
- [types] allow genesis file to have 0 validators ([#2015](https://github.com/tendermint/tendermint/issues/2015))
|
||||||
|
|
||||||
IMPROVEMENTS:
|
IMPROVEMENTS:
|
||||||
- [scripts] Added json2wal tool, which is supposed to help our users restore
|
- [scripts] Added json2wal tool, which is supposed to help our users restore
|
||||||
|
@ -8,13 +8,13 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/tendermint/go-amino"
|
|
||||||
"github.com/tendermint/tendermint/types"
|
|
||||||
cs "github.com/tendermint/tendermint/consensus"
|
|
||||||
"fmt"
|
|
||||||
"os"
|
|
||||||
"io"
|
|
||||||
"bufio"
|
"bufio"
|
||||||
|
"fmt"
|
||||||
|
"github.com/tendermint/go-amino"
|
||||||
|
cs "github.com/tendermint/tendermint/consensus"
|
||||||
|
"github.com/tendermint/tendermint/types"
|
||||||
|
"io"
|
||||||
|
"os"
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -26,7 +26,6 @@ func init() {
|
|||||||
types.RegisterBlockAmino(cdc)
|
types.RegisterBlockAmino(cdc)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
if len(os.Args) < 3 {
|
if len(os.Args) < 3 {
|
||||||
fmt.Fprintln(os.Stderr, "missing arguments: Usage:json2wal <path-to-JSON> <path-to-wal>")
|
fmt.Fprintln(os.Stderr, "missing arguments: Usage:json2wal <path-to-JSON> <path-to-wal>")
|
||||||
@ -72,4 +71,3 @@ func main() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -12,8 +12,8 @@ import (
|
|||||||
"io"
|
"io"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
cs "github.com/tendermint/tendermint/consensus"
|
|
||||||
"github.com/tendermint/go-amino"
|
"github.com/tendermint/go-amino"
|
||||||
|
cs "github.com/tendermint/tendermint/consensus"
|
||||||
"github.com/tendermint/tendermint/types"
|
"github.com/tendermint/tendermint/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user