Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Lee ByeongJun <[email protected]>
  • Loading branch information
tolelom and notJoon authored Aug 27, 2024
1 parent 7ff5c4b commit a1b26b9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions core/entities/baseCurrency.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ type BaseCurrency struct {
chainId int
decimals int

symbol *string
name *string
address *string
symbol string
name string
address string
}

func NewBaseCurrency(chainId int, decimals int, symbol string, name string) *BaseCurrency {
Expand All @@ -23,7 +23,7 @@ func NewBaseCurrency(chainId int, decimals int, symbol string, name string) *Bas

chainId: chainId,
decimals: decimals,
symbol: &symbol,
name: &name,
symbol: symbol,
name: name,
}
}

0 comments on commit a1b26b9

Please sign in to comment.