Skip to content
This repository has been archived by the owner on Dec 2, 2024. It is now read-only.

Commit

Permalink
IOS-8220 Core: the coin price is displayed incorrectly (#861)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlekseiMuraveinik1 authored Oct 9, 2024
1 parent e24ab25 commit b8ee065
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion BlockchainSdk/Common/Blockchain.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1248,7 +1248,10 @@ private extension Blockchain {
case .sei:
return "sei-network"
case .core:
return "core"
switch type {
case .network: return "core"
case .coin: return "coredaoorg"
}
}
}

Expand Down

0 comments on commit b8ee065

Please sign in to comment.