From 3e2ba3c4c225dd1e1e8619946811720ab1362e0e Mon Sep 17 00:00:00 2001 From: Aditya Kulkarni Date: Wed, 21 Apr 2021 10:45:34 -0700 Subject: [PATCH] Fix vendor string --- common/common.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/common.go b/common/common.go index 9662bf4..24c5530 100644 --- a/common/common.go +++ b/common/common.go @@ -195,9 +195,9 @@ func GetLightdInfo() (*walletrpc.LightdInfo, error) { saplingHeight = saplingJSON.ActivationHeight } - vendor := "ECC LightWalletD" + vendor := "Zecwallet LightWalletD" if DarksideEnabled { - vendor = "ECC DarksideWalletD" + vendor = "Zecwallet DarksideWalletD" } return &walletrpc.LightdInfo{ Version: Version,