From e371da3b66144918823bffae59b59dc95b569b30 Mon Sep 17 00:00:00 2001 From: Taras Rusakovich Date: Tue, 15 Oct 2024 14:16:46 +0300 Subject: [PATCH] make sure vxor created cause used for burns and buybacks --- run_node_processing.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/run_node_processing.py b/run_node_processing.py index bb59b9e..77959f7 100644 --- a/run_node_processing.py +++ b/run_node_processing.py @@ -298,12 +298,13 @@ def get_end(substrate: SubstrateInterface): pending = None if not silent: logging.info("Importing from %i to %i", begin, end) - # make sure XOR, XSTUSD, VAL and PSWAP token entries created + # make sure XOR, XSTUSD, VAL, PSWAP and VXOR token entries created # be able to import burns and buybacks await get_or_create_token(substrate, session, xor_id_int) await get_or_create_token(substrate, session, xstusd_id_int) await get_or_create_token(substrate, session, val_id_int) await get_or_create_token(substrate, session, pswap_id_int) + await get_or_create_token(substrate, session, vxor_id_int) for block in (range if silent or not sys.stdout.isatty() else trange)( begin, end ):