diff options
author | obscuren <geffobscura@gmail.com> | 2015-02-06 07:00:59 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-02-06 07:00:59 +0800 |
commit | e40c1c62ce0c2d9567066d84ea74fd24b424a81a (patch) | |
tree | 03fe0de4881f541a4a8dc2baae6a0da97ac8a7f7 /whisper/whisper_test.go | |
parent | 6b5f25802e73056702b743e0cab284cef49381ad (diff) | |
download | go-tangerine-e40c1c62ce0c2d9567066d84ea74fd24b424a81a.tar.gz go-tangerine-e40c1c62ce0c2d9567066d84ea74fd24b424a81a.tar.zst go-tangerine-e40c1c62ce0c2d9567066d84ea74fd24b424a81a.zip |
API changed to use Pubkey only. Reflected that change in the rest of the api
Diffstat (limited to 'whisper/whisper_test.go')
-rw-r--r-- | whisper/whisper_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/whisper/whisper_test.go b/whisper/whisper_test.go index c5ad73021..3e3945a0a 100644 --- a/whisper/whisper_test.go +++ b/whisper/whisper_test.go @@ -11,7 +11,7 @@ func TestEvent(t *testing.T) { whisper := New() id := whisper.NewIdentity() whisper.Watch(Filter{ - To: id, + To: &id.PublicKey, Fn: func(msg *Message) { res <- msg }, |