fix: loading service without error
This commit is contained in:
parent
a7a56cf471
commit
5b1510313a
|
@ -20,6 +20,7 @@ type
|
||||||
|
|
||||||
proc toSettingDto*(jsonObj: JsonNode): SettingDto =
|
proc toSettingDto*(jsonObj: JsonNode): SettingDto =
|
||||||
result = SettingDto()
|
result = SettingDto()
|
||||||
|
|
||||||
discard jsonObj.getProp("signing-phrase", result.signingPhrase)
|
discard jsonObj.getProp("signing-phrase", result.signingPhrase)
|
||||||
if not jsonObj.getProp("currency", result.currency):
|
if not jsonObj.getProp("currency", result.currency):
|
||||||
result.currency = DEFAULT_CURRENCY
|
result.currency = DEFAULT_CURRENCY
|
||||||
|
@ -43,8 +44,8 @@ proc toSettingDto*(jsonObj: JsonNode): SettingDto =
|
||||||
break
|
break
|
||||||
|
|
||||||
result.activeTokenSymbols = @[]
|
result.activeTokenSymbols = @[]
|
||||||
|
if jsonObj.hasKey("wallet/visible-tokens"):
|
||||||
let symbols = parseJson(jsonObj{"wallet/visible-tokens"}.getStr)
|
let symbols = parseJson(jsonObj{"wallet/visible-tokens"}.getStr)
|
||||||
for symbol in symbols{$result.currentNetwork.id}.getElems():
|
for symbol in symbols{$result.currentNetwork.id}.getElems():
|
||||||
result.activeTokenSymbols.add(symbol.getStr)
|
result.activeTokenSymbols.add(symbol.getStr)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue