From c1b2dee1e15f30435b89f88256ebc17289096821 Mon Sep 17 00:00:00 2001 From: Sergi Delgado Segura Date: Mon, 8 Jul 2019 15:54:52 +0100 Subject: [PATCH] Changes default port Current default port is 9814, which represents the white chess tower in ASCII --- pisa-btc/apps/__init__.py | 2 +- pisa-btc/pisa/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pisa-btc/apps/__init__.py b/pisa-btc/apps/__init__.py index 452f264..3281608 100644 --- a/pisa-btc/apps/__init__.py +++ b/pisa-btc/apps/__init__.py @@ -1,2 +1,2 @@ DEFAULT_PISA_API_SERVER = 'localhost' -DEFAULT_PISA_API_PORT = 2222 \ No newline at end of file +DEFAULT_PISA_API_PORT = 9814 \ No newline at end of file diff --git a/pisa-btc/pisa/__init__.py b/pisa-btc/pisa/__init__.py index 46e14d4..5fd2667 100644 --- a/pisa-btc/pisa/__init__.py +++ b/pisa-btc/pisa/__init__.py @@ -1,2 +1,2 @@ HOST = 'localhost' -PORT = 2222 \ No newline at end of file +PORT = 9814 \ No newline at end of file