Skip to content

Commit

Permalink
Set supportedNetworks and recommendedNetworks to NextNet only
Browse files Browse the repository at this point in the history
  • Loading branch information
igordanilcenko committed Dec 20, 2023
1 parent 9e288b3 commit 2a78629
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import com.tari.android.wallet.data.sharedPrefs.delegates.SharedPrefGsonDelegate

class NetworkRepositoryImpl(sharedPrefs: SharedPreferences) : NetworkRepository {

override var supportedNetworks: List<Network> = listOf(Network.STAGENET)
override var supportedNetworks: List<Network> = listOf(Network.NEXTNET)

override var recommendedNetworks: List<Network> = listOf(Network.STAGENET)
override var recommendedNetworks: List<Network> = listOf(Network.NEXTNET)

override var currentNetwork by SharedPrefGsonDelegate(sharedPrefs, SimpleRepository(this), Keys.currentNetwork, TariNetwork::class.java)

Expand Down

0 comments on commit 2a78629

Please sign in to comment.