mirror of
https://github.com/status-im/status-go.git
synced 2025-01-12 15:45:07 +00:00
44aa313981
This change makes shhext and protocol submodule work with Waku and Whisper.
14 lines
213 B
Go
14 lines
213 B
Go
package transport
|
|
|
|
import "github.com/status-im/status-go/eth-node/types"
|
|
|
|
func DefaultMessage() types.NewMessage {
|
|
msg := types.NewMessage{}
|
|
|
|
msg.TTL = 10
|
|
msg.PowTarget = 0.002
|
|
msg.PowTime = 1
|
|
|
|
return msg
|
|
}
|