Add debugging

This commit is contained in:
Rene Vergara 2023-10-13 14:45:19 -05:00
parent c2be91dfcc
commit a3eb5d29ee
Signed by: pitmutt
GPG Key ID: 65122AD495A7F5B2
1 changed files with 2 additions and 1 deletions

View File

@ -2016,8 +2016,9 @@ scanTxNative config pipe = do
case zM of
Right m -> do
case m_orderId m of
Nothing -> return ()
Nothing -> print "Not an order Tx"
Just orderId -> do
print orderId
o <- access p master dbName $ findOrderById (T.unpack orderId)
let xOrder = o >>= (cast' . Doc)
case xOrder of