From e5b484f2a78cd9af34ecf0c5243d9a7d36c82033 Mon Sep 17 00:00:00 2001 From: Iredia Ebikade <40021650+irediaes@users.noreply.github.com> Date: Mon, 29 Aug 2022 12:46:07 +0100 Subject: [PATCH] fix: uncommented production node url and commented local node url --- lib/common/services/db/database.dart | 2 +- lib/config/env.dart | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/common/services/db/database.dart b/lib/common/services/db/database.dart index 9309622..5be530a 100644 --- a/lib/common/services/db/database.dart +++ b/lib/common/services/db/database.dart @@ -43,7 +43,7 @@ class CEVDBService { return odb; } - /// create conpetition table first version + /// create transactions table first version _createTableTransactionsV1(Batch batch) { batch.execute("DROP TABLE IF EXISTS $transactionTable"); batch.execute('''CREATE TABLE $transactionTable ( diff --git a/lib/config/env.dart b/lib/config/env.dart index 0c241ee..ed9ab61 100644 --- a/lib/config/env.dart +++ b/lib/config/env.dart @@ -76,8 +76,8 @@ class Env { static const String extrinsicSuccessEvent = "ExtrinsicSuccess"; static const String extrinsicFailedEvent = "ExtrinsicFailed"; static const String approved = "Approved"; - // static const String peaqTestnet = "wss://wss.agung.peaq.network"; - static const String peaqTestnet = "ws://10.0.2.2:9944"; + static const String peaqTestnet = "wss://wss.agung.peaq.network"; + // static const String peaqTestnet = "ws://10.0.2.2:9944"; static const String didDocAttributeName = "v2"; static const String poweredBy = "powered by"; static const String peaqPay = "peaqPay";