mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-21 08:51:32 +00:00
fix test cases
This commit is contained in:
@ -18,7 +18,7 @@ func BenchmarkTestCustom(b *testing.B) {
|
||||
Name: "Header",
|
||||
Height: 123,
|
||||
Fees: 123,
|
||||
Time: 123,
|
||||
Time: TimeFromUnix(123),
|
||||
PrevHash: ByteSlice("prevhash"),
|
||||
ValidationHash: ByteSlice("validationhash"),
|
||||
TxsHash: ByteSlice("txshash"),
|
||||
@ -83,7 +83,7 @@ func BenchmarkTestGob(b *testing.B) {
|
||||
Name: "Header",
|
||||
Height: 123,
|
||||
Fees: 123,
|
||||
Time: 123,
|
||||
Time: TimeFromUnix(123),
|
||||
PrevHash: []byte("prevhash"),
|
||||
ValidationHash: []byte("validationhash"),
|
||||
TxsHash: []byte("txshash"),
|
||||
@ -112,7 +112,7 @@ func BenchmarkTestMsgPack(b *testing.B) {
|
||||
Name: "Header",
|
||||
Height: 123,
|
||||
Fees: 123,
|
||||
Time: 123,
|
||||
Time: TimeFromUnix(123),
|
||||
PrevHash: []byte("prevhash"),
|
||||
ValidationHash: []byte("validationhash"),
|
||||
TxsHash: []byte("txshash"),
|
||||
@ -141,7 +141,7 @@ func BenchmarkTestMsgPack2(b *testing.B) {
|
||||
Name: "Header",
|
||||
Height: 123,
|
||||
Fees: 123,
|
||||
Time: 123,
|
||||
Time: TimeFromUnix(123),
|
||||
PrevHash: []byte("prevhash"),
|
||||
ValidationHash: []byte("validationhash"),
|
||||
TxsHash: []byte("txshash"),
|
||||
|
Reference in New Issue
Block a user