Implement BFT time (#2203)

* Implement BFT time

* set LastValidators when creating state in state helper

for heights >= 2
This commit is contained in:
Zarko Milosevic
2018-09-01 01:33:51 +02:00
committed by Ethan Buchman
parent ffe91ae9e3
commit 7b88172f41
31 changed files with 306 additions and 112 deletions

View File

@ -10,12 +10,13 @@ package main
import (
"bufio"
"fmt"
"github.com/tendermint/go-amino"
cs "github.com/tendermint/tendermint/consensus"
"github.com/tendermint/tendermint/types"
"io"
"os"
"strings"
"github.com/tendermint/go-amino"
cs "github.com/tendermint/tendermint/consensus"
"github.com/tendermint/tendermint/types"
)
var cdc = amino.NewCodec()