whisper: remove redundant type specifiers

This commit is contained in:
Matthew Halpern 2019-02-14 17:08:37 -08:00
parent 7f6b05aa43
commit 2f10743019

View file

@ -84,7 +84,7 @@ type TestNode struct {
var result TestData var result TestData
var nodes [NumNodes]*TestNode var nodes [NumNodes]*TestNode
var sharedKey = []byte("some arbitrary data here") var sharedKey = []byte("some arbitrary data here")
var sharedTopic TopicType = TopicType{0xF, 0x1, 0x2, 0} var sharedTopic = TopicType{0xF, 0x1, 0x2, 0}
var expectedMessage = []byte("per rectum ad astra") var expectedMessage = []byte("per rectum ad astra")
// This test does the following: // This test does the following: