Skip to content

Commit

Permalink
fix: uncommented production node url and commented local node url
Browse files Browse the repository at this point in the history
  • Loading branch information
irediaes committed Aug 29, 2022
1 parent 4dc3822 commit e5b484f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/common/services/db/database.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down
4 changes: 2 additions & 2 deletions lib/config/env.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit e5b484f

Please sign in to comment.