fix: don't use testnet

This commit is contained in:
jubb 2021-05-04 09:06:59 +10:00
parent a2290a34fc
commit c102c5132e
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ object SnodeAPI {
private val targetSwarmSnodeCount = 2
private val useOnionRequests = true
internal val useTestnet = true
internal val useTestnet = false
// Error
internal sealed class Error(val description: String) : Exception(description) {