trim destination in WalletSend

This commit is contained in:
nicolas.dorier
2018-11-01 12:54:25 +09:00
parent 0d51c99717
commit 4b0951caec

View File

@@ -256,6 +256,7 @@ namespace BTCPayServer.Controllers
{
try
{
destination = destination?.Trim();
return new IDestination[] { BitcoinAddress.Create(destination, network) };
}
catch