Skip to content

Commit

Permalink
Merge pull request #620 from vertiond/upstream-testnet
Browse files Browse the repository at this point in the history
remove testnet option
  • Loading branch information
KforG authored Mar 11, 2024
2 parents 98fee44 + dfa9fee commit 57b10af
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion backend/settings.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ func (m *Backend) GetPools() []PoolChoice {
}

func (m *Backend) GetTestnet() bool {
return m.getSetting("testnet")
return false // Testnet is not necessary - return false
//return m.getSetting("testnet")
}

func (m *Backend) SetTestnet(newTestnet bool) {
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/components/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
</p>
</div>
<div class="col-settings-sub">
<p style="text-align: left">
<!-- <p style="text-align: left">
<input type="checkbox" v-model="testnet" />
{{ $t("settings.testnet") }}
<br />
<span class="subtext">{{ $t("settings.testnet_sub") }}</span>
</p>
</p> -->
<p style="text-align: left">
<input type="checkbox" v-model="enableIntegrated" />
{{ $t("settings.enable_integrated") }}
Expand Down

0 comments on commit 57b10af

Please sign in to comment.