diff --git a/installer/windows/Storj/CustomAction.cs b/installer/windows/Storj/CustomAction.cs index 50aee4a05..5cbe332a5 100644 --- a/installer/windows/Storj/CustomAction.cs +++ b/installer/windows/Storj/CustomAction.cs @@ -65,13 +65,13 @@ namespace Storj if (string.IsNullOrEmpty(wallet)) { - session["STORJ_WALLET_VALID"] = "The wallet address cannot be empty."; + session["STORJ_WALLET_VALID"] = "The payout address cannot be empty."; return ActionResult.Success; } if (!wallet.StartsWith("0x")) { - session["STORJ_WALLET_VALID"] = "The wallet address must start with a '0x' prefix."; + session["STORJ_WALLET_VALID"] = "The payout address must start with a '0x' prefix."; return ActionResult.Success; } @@ -80,7 +80,7 @@ namespace Storj if (wallet.Length != 40) { - session["STORJ_WALLET_VALID"] = "The wallet address must have 40 characters after the '0x' prefix."; + session["STORJ_WALLET_VALID"] = "The payout address must have 40 characters after the '0x' prefix."; return ActionResult.Success; } diff --git a/installer/windows/WalletConfig.wxs b/installer/windows/WalletConfig.wxs index 649789bba..66cc5369c 100644 --- a/installer/windows/WalletConfig.wxs +++ b/installer/windows/WalletConfig.wxs @@ -9,15 +9,15 @@ 1 - + - + - + Learn how to obtain a valid payout address.]]>