Skip to content

Commit

Permalink
Use zero time.
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeGruffins committed Feb 9, 2021
1 parent 0b95747 commit 1e3d839
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/rpcserver/rpcserverhandlers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7358,12 +7358,12 @@ func TestHandleGetRawMempool(t *testing.T) {

getRawMempoolVerboseResult := &types.GetRawMempoolVerboseResult{
Size: 15,
Time: -62135596800,
Time: time.Time{}.Unix(),
Depends: []string{},
}
getRawMempoolVerboseTicketResult := &types.GetRawMempoolVerboseResult{
Size: 15,
Time: -62135596800,
Time: time.Time{}.Unix(),
Depends: []string{regularHash},
}

Expand Down

0 comments on commit 1e3d839

Please sign in to comment.