From 091221ba2cba274022eaae22d5361719e2d867d9 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Fri, 13 Sep 2019 09:21:02 -0400 Subject: [PATCH] added wallet/constants.py --- lbry/lbry/wallet/constants.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 lbry/lbry/wallet/constants.py diff --git a/lbry/lbry/wallet/constants.py b/lbry/lbry/wallet/constants.py new file mode 100644 index 000000000..d4b51e41b --- /dev/null +++ b/lbry/lbry/wallet/constants.py @@ -0,0 +1,5 @@ +TXO_TYPES = { + "stream": 1, + "channel": 2, + "support": 3 +}