Handle "pin already prompted" error. (Fix #1209)

This commit is contained in:
nicolas.dorier
2019-12-03 13:53:50 +09:00
parent f94daed06d
commit 71a8166027
3 changed files with 20 additions and 8 deletions

View File

@@ -728,7 +728,7 @@ namespace BTCPayServer.Controllers
{
try
{
return (await wallet.GetBalance(derivationStrategy, cts.Token)).ToString();
return (await wallet.GetBalance(derivationStrategy, cts.Token)).ToString(CultureInfo.InvariantCulture);
}
catch
{