- Switch to integrated addresses (address+payment_id) -> `make_integrated_address @ RPC)

- Changed homegrown caching solution to use flask extension `flask_cache` instead
- Remove detection of out-going (sent) funds, needs to be manually registered in table "payouts" now
- Updated Flask version
This commit is contained in:
dsc 2020-06-09 04:32:51 +02:00 committed by dsc
parent c0b972edde
commit 401c26e85b
18 changed files with 311 additions and 308 deletions

View file

@ -7,11 +7,12 @@ BASE_DIR = os.path.dirname(os.path.abspath(__file__))
SECRET = ''
DEBUG = True
COIN_ADDRESS_LENGTH = 97
COIN_ADDRESS_LENGTH = [97, 108]
COINCODE = ''
PSQL_USER = ''
PSQL_PASS = ''
PSQL_HOST = "127.0.0.1:5432"
PSQL_DB = ''
PSQL_USER = 'postgres'
PSQL_PASS = ''
SQLALCHEMY_DATABASE_URI = os.environ.get('SQLALCHEMY_DATABASE_URI', 'postgresql://{user}:{pw}@localhost/{db}').format(user=PSQL_USER, pw=PSQL_PASS, db=PSQL_DB)