Merge pull request #975 from tendermint/974-fix-test-in-develop

add missing Timestamp to Vote
This commit is contained in:
Ethan Buchman 2017-12-14 09:22:11 -05:00 committed by GitHub
commit 21d030dbfb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -2,6 +2,7 @@ package types
import ( import (
"testing" "testing"
"time"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
crypto "github.com/tendermint/go-crypto" crypto "github.com/tendermint/go-crypto"
@ -65,6 +66,7 @@ func makeCommit(blockID BlockID, height int64, round int,
Round: round, Round: round,
Type: VoteTypePrecommit, Type: VoteTypePrecommit,
BlockID: blockID, BlockID: blockID,
Timestamp: time.Now().UTC(),
} }
// all sign // all sign