mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-02-09 00:04:20 +01:00
Split mnemonics correctly
This commit is contained in:
@@ -81,7 +81,7 @@ services:
|
||||
- customer_lnd
|
||||
- merchant_lnd
|
||||
nbxplorer:
|
||||
image: nicolasdorier/nbxplorer:2.1.40
|
||||
image: nicolasdorier/nbxplorer:2.1.42
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "32838:32838"
|
||||
|
||||
@@ -78,7 +78,7 @@ services:
|
||||
- customer_lnd
|
||||
- merchant_lnd
|
||||
nbxplorer:
|
||||
image: nicolasdorier/nbxplorer:2.1.40
|
||||
image: nicolasdorier/nbxplorer:2.1.42
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "32838:32838"
|
||||
|
||||
@@ -16,7 +16,7 @@ namespace BTCPayServer.Models.StoreViewModels
|
||||
|
||||
public string[] Words
|
||||
{
|
||||
get => Mnemonic.Split(" ");
|
||||
get => Mnemonic.Split((char[])null, System.StringSplitOptions.RemoveEmptyEntries);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user