Revert "fix(@wallet): random failure with building dto"
This reverts commit 8abd9c56a1
.
This commit is contained in:
parent
7183621369
commit
658279696e
|
@ -2,7 +2,7 @@ import json, strformat, stint, strutils
|
||||||
|
|
||||||
include app_service/common/json_utils
|
include app_service/common/json_utils
|
||||||
|
|
||||||
type BalanceDto* = ref object
|
type BalanceDto* = object
|
||||||
rawBalance*: Uint256
|
rawBalance*: Uint256
|
||||||
balance*: float64
|
balance*: float64
|
||||||
address*: string
|
address*: string
|
||||||
|
|
|
@ -7,7 +7,7 @@ include app_service/common/json_utils
|
||||||
export balance_dto
|
export balance_dto
|
||||||
|
|
||||||
type
|
type
|
||||||
TokenMarketValuesDto* = ref object
|
TokenMarketValuesDto* = object
|
||||||
marketCap*: float64
|
marketCap*: float64
|
||||||
highDay*: float64
|
highDay*: float64
|
||||||
lowDay*: float64
|
lowDay*: float64
|
||||||
|
@ -19,7 +19,7 @@ type
|
||||||
hasError*: bool
|
hasError*: bool
|
||||||
|
|
||||||
type
|
type
|
||||||
WalletTokenDto* = ref object
|
WalletTokenDto* = object
|
||||||
name*: string
|
name*: string
|
||||||
symbol*: string
|
symbol*: string
|
||||||
decimals*: int
|
decimals*: int
|
||||||
|
|
Loading…
Reference in New Issue