aboutsummaryrefslogtreecommitdiffstats
path: root/whisper/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'whisper/main.go')
-rw-r--r--whisper/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/whisper/main.go b/whisper/main.go
index 6a089f894..422f0fa3b 100644
--- a/whisper/main.go
+++ b/whisper/main.go
@@ -69,7 +69,7 @@ func selfSend(shh *whisper.Whisper, payload []byte) error {
})
// Wrap the payload and encrypt it
msg := whisper.NewMessage(payload)
- envelope, err := msg.Wrap(whisper.DefaultPow, whisper.Options{
+ envelope, err := msg.Wrap(whisper.DefaultProofOfWork, whisper.Options{
From: id,
To: &id.PublicKey,
TTL: whisper.DefaultTimeToLive,