mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-26 19:21:44 +00:00
Refactor priv_validator
Users can now just pass an object that implements the Signer interface.
This commit is contained in:
committed by
Ethan Buchman
parent
0d392a0442
commit
7dd3c007c7
@ -6,6 +6,7 @@ import (
|
||||
"github.com/tendermint/tendermint/consensus"
|
||||
)
|
||||
|
||||
// ReplayCmd allows replaying of messages from the WAL.
|
||||
var ReplayCmd = &cobra.Command{
|
||||
Use: "replay",
|
||||
Short: "Replay messages from WAL",
|
||||
@ -14,6 +15,8 @@ var ReplayCmd = &cobra.Command{
|
||||
},
|
||||
}
|
||||
|
||||
// ReplayConsoleCmd allows replaying of messages from the WAL in a
|
||||
// console.
|
||||
var ReplayConsoleCmd = &cobra.Command{
|
||||
Use: "replay_console",
|
||||
Short: "Replay messages from WAL in a console",
|
||||
|
Reference in New Issue
Block a user