Skip to content

Commit

Permalink
Revert "fix(@wallet): random failure with building dto"
Browse files Browse the repository at this point in the history
This reverts commit 8abd9c5.
  • Loading branch information
alaibe committed Nov 9, 2023
1 parent 7183621 commit 6582796
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app_service/service/wallet_account/dto/balance_dto.nim
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/app_service/service/wallet_account/dto/token_dto.nim
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -19,7 +19,7 @@ type
hasError*: bool

type
WalletTokenDto* = ref object
WalletTokenDto* = object
name*: string
symbol*: string
decimals*: int
Expand Down

0 comments on commit 6582796

Please sign in to comment.