Upgrade tendermint to 0.28.0-dev0 (#3279)
This commit is contained in:
parent
05d53894a3
commit
df567616a9
|
@ -452,11 +452,12 @@
|
||||||
version = "v0.12.0"
|
version = "v0.12.0"
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
digest = "1:fbf8a69c035430a7f06fe0b725ef9ef1ea02366a35d35a0f4c2c2c77b5d1d9cb"
|
digest = "1:cf5ca19b425df58000f12801db22c1c50840be194640d7b612312e4beffb0ff7"
|
||||||
name = "github.com/tendermint/tendermint"
|
name = "github.com/tendermint/tendermint"
|
||||||
packages = [
|
packages = [
|
||||||
"abci/client",
|
"abci/client",
|
||||||
"abci/example/code",
|
"abci/example/code",
|
||||||
|
"abci/example/counter",
|
||||||
"abci/example/kvstore",
|
"abci/example/kvstore",
|
||||||
"abci/server",
|
"abci/server",
|
||||||
"abci/types",
|
"abci/types",
|
||||||
|
@ -517,7 +518,7 @@
|
||||||
"version",
|
"version",
|
||||||
]
|
]
|
||||||
pruneopts = "UT"
|
pruneopts = "UT"
|
||||||
revision = "v0.27.4"
|
revision = "v0.28.0-dev0"
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
digest = "1:a7485b2a69f996923f9d3406a9a853fd8eb31818515e985a830d71f88f6a925b"
|
digest = "1:a7485b2a69f996923f9d3406a9a853fd8eb31818515e985a830d71f88f6a925b"
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
|
|
||||||
[[override]]
|
[[override]]
|
||||||
name = "github.com/tendermint/tendermint"
|
name = "github.com/tendermint/tendermint"
|
||||||
revision = "v0.27.4"
|
revision = "v0.28.0-dev0"
|
||||||
|
|
||||||
[[constraint]]
|
[[constraint]]
|
||||||
name = "github.com/zondax/ledger-cosmos-go"
|
name = "github.com/zondax/ledger-cosmos-go"
|
||||||
|
|
|
@ -29,7 +29,7 @@ BREAKING CHANGES
|
||||||
meter utilization during aborted ante handler executions.
|
meter utilization during aborted ante handler executions.
|
||||||
|
|
||||||
* Tendermint
|
* Tendermint
|
||||||
* [\#3278](https://github.com/cosmos/cosmos-sdk/pull/3278) Upgrade to 0.27.4 release
|
* \#3279 Upgrade to Tendermint 0.28.0-dev0
|
||||||
|
|
||||||
FEATURES
|
FEATURES
|
||||||
|
|
||||||
|
|
|
@ -227,8 +227,8 @@ func InitializeTestLCD(
|
||||||
logger := log.NewTMLogger(log.NewSyncWriter(os.Stdout))
|
logger := log.NewTMLogger(log.NewSyncWriter(os.Stdout))
|
||||||
logger = log.NewFilter(logger, log.AllowError())
|
logger = log.NewFilter(logger, log.AllowError())
|
||||||
|
|
||||||
privValidatorFile := config.PrivValidatorFile()
|
privVal := pvm.LoadOrGenFilePV(config.PrivValidatorKeyFile(),
|
||||||
privVal := pvm.LoadOrGenFilePV(privValidatorFile)
|
config.PrivValidatorStateFile())
|
||||||
privVal.Reset()
|
privVal.Reset()
|
||||||
|
|
||||||
db := dbm.NewMemDB()
|
db := dbm.NewMemDB()
|
||||||
|
@ -247,7 +247,7 @@ func InitializeTestLCD(
|
||||||
for i := 0; i < nValidators; i++ {
|
for i := 0; i < nValidators; i++ {
|
||||||
operPrivKey := secp256k1.GenPrivKey()
|
operPrivKey := secp256k1.GenPrivKey()
|
||||||
operAddr := operPrivKey.PubKey().Address()
|
operAddr := operPrivKey.PubKey().Address()
|
||||||
pubKey := privVal.PubKey
|
pubKey := privVal.GetPubKey()
|
||||||
delegation := 100
|
delegation := 100
|
||||||
if i > 0 {
|
if i > 0 {
|
||||||
pubKey = ed25519.GenPrivKey().PubKey()
|
pubKey = ed25519.GenPrivKey().PubKey()
|
||||||
|
|
|
@ -4,6 +4,7 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
|
"path/filepath"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
amino "github.com/tendermint/go-amino"
|
amino "github.com/tendermint/go-amino"
|
||||||
|
@ -16,6 +17,7 @@ import (
|
||||||
|
|
||||||
"github.com/cosmos/cosmos-sdk/cmd/gaia/app"
|
"github.com/cosmos/cosmos-sdk/cmd/gaia/app"
|
||||||
"github.com/cosmos/cosmos-sdk/codec"
|
"github.com/cosmos/cosmos-sdk/codec"
|
||||||
|
"github.com/cosmos/cosmos-sdk/server"
|
||||||
)
|
)
|
||||||
|
|
||||||
// ExportGenesisFile creates and writes the genesis configuration to disk. An
|
// ExportGenesisFile creates and writes the genesis configuration to disk. An
|
||||||
|
@ -58,20 +60,6 @@ func ExportGenesisFileWithTime(
|
||||||
return genDoc.SaveAs(genFile)
|
return genDoc.SaveAs(genFile)
|
||||||
}
|
}
|
||||||
|
|
||||||
// read of create the private key file for this config
|
|
||||||
func ReadOrCreatePrivValidator(privValFile string) crypto.PubKey {
|
|
||||||
var privValidator *privval.FilePV
|
|
||||||
|
|
||||||
if common.FileExists(privValFile) {
|
|
||||||
privValidator = privval.LoadFilePV(privValFile)
|
|
||||||
} else {
|
|
||||||
privValidator = privval.GenFilePV(privValFile)
|
|
||||||
privValidator.Save()
|
|
||||||
}
|
|
||||||
|
|
||||||
return privValidator.GetPubKey()
|
|
||||||
}
|
|
||||||
|
|
||||||
// InitializeNodeValidatorFiles creates private validator and p2p configuration files.
|
// InitializeNodeValidatorFiles creates private validator and p2p configuration files.
|
||||||
func InitializeNodeValidatorFiles(
|
func InitializeNodeValidatorFiles(
|
||||||
config *cfg.Config) (nodeID string, valPubKey crypto.PubKey, err error,
|
config *cfg.Config) (nodeID string, valPubKey crypto.PubKey, err error,
|
||||||
|
@ -83,7 +71,19 @@ func InitializeNodeValidatorFiles(
|
||||||
}
|
}
|
||||||
|
|
||||||
nodeID = string(nodeKey.ID())
|
nodeID = string(nodeKey.ID())
|
||||||
valPubKey = ReadOrCreatePrivValidator(config.PrivValidatorFile())
|
server.UpgradeOldPrivValFile(config)
|
||||||
|
|
||||||
|
pvKeyFile := config.PrivValidatorKeyFile()
|
||||||
|
if err := common.EnsureDir(filepath.Dir(pvKeyFile), 0777); err != nil {
|
||||||
|
return nodeID, valPubKey, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
pvStateFile := config.PrivValidatorStateFile()
|
||||||
|
if err := common.EnsureDir(filepath.Dir(pvStateFile), 0777); err != nil {
|
||||||
|
return nodeID, valPubKey, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
valPubKey = privval.LoadOrGenFilePV(pvKeyFile, pvStateFile).GetPubKey()
|
||||||
|
|
||||||
return nodeID, valPubKey, nil
|
return nodeID, valPubKey, nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,11 +3,13 @@ package main
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/cosmos/cosmos-sdk/store"
|
|
||||||
"io"
|
"io"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
|
"github.com/cosmos/cosmos-sdk/store"
|
||||||
|
|
||||||
"github.com/tendermint/tendermint/p2p"
|
"github.com/tendermint/tendermint/p2p"
|
||||||
|
"github.com/tendermint/tendermint/privval"
|
||||||
|
|
||||||
"github.com/cosmos/cosmos-sdk/baseapp"
|
"github.com/cosmos/cosmos-sdk/baseapp"
|
||||||
gaiaInit "github.com/cosmos/cosmos-sdk/cmd/gaia/init"
|
gaiaInit "github.com/cosmos/cosmos-sdk/cmd/gaia/init"
|
||||||
|
@ -78,7 +80,8 @@ func InitCmd(ctx *server.Context, cdc *codec.Codec) *cobra.Command {
|
||||||
}
|
}
|
||||||
nodeID := string(nodeKey.ID())
|
nodeID := string(nodeKey.ID())
|
||||||
|
|
||||||
pk := gaiaInit.ReadOrCreatePrivValidator(config.PrivValidatorFile())
|
pk := privval.LoadOrGenFilePV(config.PrivValidatorKeyFile(),
|
||||||
|
config.PrivValidatorStateFile()).GetPubKey()
|
||||||
genTx, appMessage, validator, err := server.SimpleAppGenTx(cdc, pk)
|
genTx, appMessage, validator, err := server.SimpleAppGenTx(cdc, pk)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
|
|
@ -9,6 +9,7 @@ import (
|
||||||
"github.com/spf13/viper"
|
"github.com/spf13/viper"
|
||||||
"github.com/tendermint/tendermint/libs/common"
|
"github.com/tendermint/tendermint/libs/common"
|
||||||
"github.com/tendermint/tendermint/p2p"
|
"github.com/tendermint/tendermint/p2p"
|
||||||
|
"github.com/tendermint/tendermint/privval"
|
||||||
|
|
||||||
"github.com/cosmos/cosmos-sdk/client"
|
"github.com/cosmos/cosmos-sdk/client"
|
||||||
|
|
||||||
|
@ -81,7 +82,8 @@ func InitCmd(ctx *server.Context, cdc *codec.Codec) *cobra.Command {
|
||||||
}
|
}
|
||||||
nodeID := string(nodeKey.ID())
|
nodeID := string(nodeKey.ID())
|
||||||
|
|
||||||
pk := gaiaInit.ReadOrCreatePrivValidator(config.PrivValidatorFile())
|
pk := privval.LoadOrGenFilePV(config.PrivValidatorKeyFile(),
|
||||||
|
config.PrivValidatorStateFile()).GetPubKey()
|
||||||
genTx, appMessage, validator, err := server.SimpleAppGenTx(cdc, pk)
|
genTx, appMessage, validator, err := server.SimpleAppGenTx(cdc, pk)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
|
|
@ -33,7 +33,7 @@ func ExportCmd(ctx *Context, cdc *codec.Codec, appExporter AppExporter) *cobra.C
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
if emptyState {
|
if emptyState || appExporter == nil {
|
||||||
fmt.Println("WARNING: State is not initialized. Returning genesis file.")
|
fmt.Println("WARNING: State is not initialized. Returning genesis file.")
|
||||||
genesisFile := path.Join(home, "config", "genesis.json")
|
genesisFile := path.Join(home, "config", "genesis.json")
|
||||||
genesis, err := ioutil.ReadFile(genesisFile)
|
genesis, err := ioutil.ReadFile(genesisFile)
|
||||||
|
|
|
@ -114,10 +114,11 @@ func startInProcess(ctx *Context, appCreator AppCreator) (*node.Node, error) {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
UpgradeOldPrivValFile(cfg)
|
||||||
// create & start tendermint node
|
// create & start tendermint node
|
||||||
tmNode, err := node.NewNode(
|
tmNode, err := node.NewNode(
|
||||||
cfg,
|
cfg,
|
||||||
pvm.LoadOrGenFilePV(cfg.PrivValidatorFile()),
|
pvm.LoadOrGenFilePV(cfg.PrivValidatorKeyFile(), cfg.PrivValidatorStateFile()),
|
||||||
nodeKey,
|
nodeKey,
|
||||||
proxy.NewLocalClientCreator(app),
|
proxy.NewLocalClientCreator(app),
|
||||||
node.DefaultGenesisDocProviderFunc(cfg),
|
node.DefaultGenesisDocProviderFunc(cfg),
|
||||||
|
|
|
@ -41,8 +41,10 @@ func ShowValidatorCmd(ctx *Context) *cobra.Command {
|
||||||
RunE: func(cmd *cobra.Command, args []string) error {
|
RunE: func(cmd *cobra.Command, args []string) error {
|
||||||
|
|
||||||
cfg := ctx.Config
|
cfg := ctx.Config
|
||||||
privValidator := pvm.LoadOrGenFilePV(cfg.PrivValidatorFile())
|
UpgradeOldPrivValFile(cfg)
|
||||||
valPubKey := privValidator.PubKey
|
privValidator := pvm.LoadOrGenFilePV(
|
||||||
|
cfg.PrivValidatorKeyFile(), cfg.PrivValidatorStateFile())
|
||||||
|
valPubKey := privValidator.GetPubKey()
|
||||||
|
|
||||||
if viper.GetBool(client.FlagJson) {
|
if viper.GetBool(client.FlagJson) {
|
||||||
return printlnJSON(valPubKey)
|
return printlnJSON(valPubKey)
|
||||||
|
@ -67,9 +69,12 @@ func ShowAddressCmd(ctx *Context) *cobra.Command {
|
||||||
Use: "show-address",
|
Use: "show-address",
|
||||||
Short: "Shows this node's tendermint validator consensus address",
|
Short: "Shows this node's tendermint validator consensus address",
|
||||||
RunE: func(cmd *cobra.Command, args []string) error {
|
RunE: func(cmd *cobra.Command, args []string) error {
|
||||||
|
|
||||||
cfg := ctx.Config
|
cfg := ctx.Config
|
||||||
privValidator := pvm.LoadOrGenFilePV(cfg.PrivValidatorFile())
|
UpgradeOldPrivValFile(cfg)
|
||||||
valConsAddr := (sdk.ConsAddress)(privValidator.Address)
|
privValidator := pvm.LoadOrGenFilePV(
|
||||||
|
cfg.PrivValidatorKeyFile(), cfg.PrivValidatorStateFile())
|
||||||
|
valConsAddr := (sdk.ConsAddress)(privValidator.GetAddress())
|
||||||
|
|
||||||
if viper.GetBool(client.FlagJson) {
|
if viper.GetBool(client.FlagJson) {
|
||||||
return printlnJSON(valConsAddr)
|
return printlnJSON(valConsAddr)
|
||||||
|
@ -102,7 +107,7 @@ func UnsafeResetAllCmd(ctx *Context) *cobra.Command {
|
||||||
Short: "Resets the blockchain database, removes address book files, and resets priv_validator.json to the genesis state",
|
Short: "Resets the blockchain database, removes address book files, and resets priv_validator.json to the genesis state",
|
||||||
RunE: func(cmd *cobra.Command, args []string) error {
|
RunE: func(cmd *cobra.Command, args []string) error {
|
||||||
cfg := ctx.Config
|
cfg := ctx.Config
|
||||||
tcmd.ResetAll(cfg.DBDir(), cfg.P2P.AddrBookFile(), cfg.PrivValidatorFile(), ctx.Logger)
|
tcmd.ResetAll(cfg.DBDir(), cfg.P2P.AddrBookFile(), cfg.PrivValidatorKeyFile(), cfg.PrivValidatorStateFile(), ctx.Logger)
|
||||||
return nil
|
return nil
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,6 +18,7 @@ import (
|
||||||
"github.com/tendermint/tendermint/libs/cli"
|
"github.com/tendermint/tendermint/libs/cli"
|
||||||
tmflags "github.com/tendermint/tendermint/libs/cli/flags"
|
tmflags "github.com/tendermint/tendermint/libs/cli/flags"
|
||||||
"github.com/tendermint/tendermint/libs/log"
|
"github.com/tendermint/tendermint/libs/log"
|
||||||
|
pvm "github.com/tendermint/tendermint/privval"
|
||||||
|
|
||||||
"github.com/cosmos/cosmos-sdk/client"
|
"github.com/cosmos/cosmos-sdk/client"
|
||||||
"github.com/cosmos/cosmos-sdk/codec"
|
"github.com/cosmos/cosmos-sdk/codec"
|
||||||
|
@ -221,6 +222,16 @@ func TrapSignal(cleanupFunc func()) {
|
||||||
}()
|
}()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// UpgradeOldPrivValFile converts old priv_validator.json file (prior to Tendermint 0.28)
|
||||||
|
// to the new priv_validator_key.json and priv_validator_state.json files.
|
||||||
|
func UpgradeOldPrivValFile(config *cfg.Config) {
|
||||||
|
if _, err := os.Stat(config.OldPrivValidatorFile()); !os.IsNotExist(err) {
|
||||||
|
if oldFilePV, err := pvm.LoadOldFilePV(config.OldPrivValidatorFile()); err == nil {
|
||||||
|
oldFilePV.Upgrade(config.PrivValidatorKeyFile(), config.PrivValidatorStateFile())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func skipInterface(iface net.Interface) bool {
|
func skipInterface(iface net.Interface) bool {
|
||||||
if iface.Flags&net.FlagUp == 0 {
|
if iface.Flags&net.FlagUp == 0 {
|
||||||
return true // interface down
|
return true // interface down
|
||||||
|
|
|
@ -620,23 +620,23 @@ func TestCountSubkeys(t *testing.T) {
|
||||||
}
|
}
|
||||||
return ret
|
return ret
|
||||||
}
|
}
|
||||||
genMultiKey := func(n, k int, keysGen func(n int) []crypto.PubKey) crypto.PubKey {
|
singleKey := secp256k1.GenPrivKey().PubKey()
|
||||||
return multisig.NewPubKeyMultisigThreshold(k, keysGen(n))
|
singleLevelMultiKey := multisig.NewPubKeyMultisigThreshold(4, genPubKeys(5))
|
||||||
}
|
multiLevelSubKey1 := multisig.NewPubKeyMultisigThreshold(4, genPubKeys(5))
|
||||||
|
multiLevelSubKey2 := multisig.NewPubKeyMultisigThreshold(4, genPubKeys(5))
|
||||||
|
multiLevelMultiKey := multisig.NewPubKeyMultisigThreshold(2, []crypto.PubKey{
|
||||||
|
multiLevelSubKey1, multiLevelSubKey2, secp256k1.GenPrivKey().PubKey()})
|
||||||
type args struct {
|
type args struct {
|
||||||
pub crypto.PubKey
|
pub crypto.PubKey
|
||||||
}
|
}
|
||||||
mkey := genMultiKey(5, 4, genPubKeys)
|
|
||||||
mkeyType := mkey.(*multisig.PubKeyMultisigThreshold)
|
|
||||||
mkeyType.PubKeys = append(mkeyType.PubKeys, genMultiKey(6, 5, genPubKeys))
|
|
||||||
tests := []struct {
|
tests := []struct {
|
||||||
name string
|
name string
|
||||||
args args
|
args args
|
||||||
want int
|
want int
|
||||||
}{
|
}{
|
||||||
{"single key", args{secp256k1.GenPrivKey().PubKey()}, 1},
|
{"single key", args{singleKey}, 1},
|
||||||
{"multi sig key", args{genMultiKey(5, 4, genPubKeys)}, 5},
|
{"single level multikey", args{singleLevelMultiKey}, 5},
|
||||||
{"multi multi sig", args{mkey}, 11},
|
{"multi level multikey", args{multiLevelMultiKey}, 11},
|
||||||
}
|
}
|
||||||
for _, tt := range tests {
|
for _, tt := range tests {
|
||||||
t.Run(tt.name, func(T *testing.T) {
|
t.Run(tt.name, func(T *testing.T) {
|
||||||
|
|
|
@ -71,7 +71,7 @@ func (tx StdTx) ValidateBasic() sdk.Error {
|
||||||
|
|
||||||
// countSubKeys counts the total number of keys for a multi-sig public key.
|
// countSubKeys counts the total number of keys for a multi-sig public key.
|
||||||
func countSubKeys(pub crypto.PubKey) int {
|
func countSubKeys(pub crypto.PubKey) int {
|
||||||
v, ok := pub.(*multisig.PubKeyMultisigThreshold)
|
v, ok := pub.(multisig.PubKeyMultisigThreshold)
|
||||||
if !ok {
|
if !ok {
|
||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue