whisper: fallback to default config if none is specified

This commit is contained in:
Bas van Kervel 2017-06-21 10:24:34 +02:00
parent 3d66ba56ef
commit b6b0e00198

View File

@ -109,6 +109,10 @@ type Whisper struct {
// New creates a Whisper client ready to communicate through the Ethereum P2P network.
func New(cfg *Config) *Whisper {
if cfg == nil {
cfg = &DefaultConfig
}
whisper := &Whisper{
privateKeys: make(map[string]*ecdsa.PrivateKey),
symKeys: make(map[string][]byte),