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-08-31 19:33:51 -04:00
committed by Ethan Buchman
parent ffe91ae9e3
commit 7b88172f41
31 changed files with 306 additions and 112 deletions
+4 -3
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()