diff --git a/config/config.go b/config/config.go index 4067c70b..4e925c77 100644 --- a/config/config.go +++ b/config/config.go @@ -205,6 +205,10 @@ func (m *MarketConfig) GetMessager() Messager { } func (m *MarketConfig) GetAuthNode() AuthNode { + if m.Signer.SignerType == SignerTypeWallet { + return AuthNode{} + } + ret := AuthNode{} if m.AuthNode != nil { ret = *m.AuthNode