Revert "fix(@wallet): random failure with building dto"

This reverts commit 8abd9c56a1.
This commit is contained in:
Anthony Laibe 2023-11-09 11:19:30 +01:00
parent 7183621369
commit 658279696e
2 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@ import json, strformat, stint, strutils
include app_service/common/json_utils
type BalanceDto* = ref object
type BalanceDto* = object
rawBalance*: Uint256
balance*: float64
address*: string

View File

@ -7,7 +7,7 @@ include app_service/common/json_utils
export balance_dto
type
TokenMarketValuesDto* = ref object
TokenMarketValuesDto* = object
marketCap*: float64
highDay*: float64
lowDay*: float64
@ -19,7 +19,7 @@ type
hasError*: bool
type
WalletTokenDto* = ref object
WalletTokenDto* = object
name*: string
symbol*: string
decimals*: int