From bbc1a45a9e0021279b4deaecda2b92f9331574f2 Mon Sep 17 00:00:00 2001 From: Chris Troutner Date: Tue, 29 Mar 2022 15:59:55 -0700 Subject: [PATCH] fix(Utxo.get()): Adding property expected by SLP.tokentype1 lib --- src/utxo.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/utxo.js b/src/utxo.js index f882658..0b4fbbc 100644 --- a/src/utxo.js +++ b/src/utxo.js @@ -126,6 +126,9 @@ class UTXO { thisUtxo.tokenId = thisSlpUtxo.tokenId thisUtxo.address = thisSlpUtxo.address + // tokenQty is property expected by SLP.tokentype1.js library + thisUtxo.tokenQty = thisUtxo.qyStr + break } }