We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c42ca7 commit f229a9fCopy full SHA for f229a9f
app/__init__.py
@@ -58,6 +58,13 @@ def __dir__(self):
58
59
utils.init_wallet(app)
60
61
+ # add fee-deposit account to watch list
62
+ block_scanner.BlockScanner.add_watched_account(
63
+ db.query_db2('select * from keys where type = "fee_deposit" ', one=True)[
64
+ "public"
65
+ ]
66
+ )
67
+
68
app.url_map.converters["decimal"] = utils.DecimalConverter
69
70
from .api import api as api_blueprint
0 commit comments