fix: need to store pointer references

This commit is contained in:
Derrick Hammer 2024-01-06 13:15:29 -05:00
parent 8742a4139b
commit fdbc4cf7fc
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 2 additions and 2 deletions

View File

@ -8,8 +8,8 @@ import (
type NodeConfig struct {
P2P P2PConfig
KeyPair ed25519.KeyPairEd25519
DB bolt.DB
KeyPair *ed25519.KeyPairEd25519
DB *bolt.DB
Logger *zap.Logger
}
type P2PConfig struct {