Add debugging

This commit is contained in:
Rene Vergara 2024-07-01 14:35:34 -05:00
parent a6d2426610
commit 14540ffb07
Signed by: pitmutt
GPG key ID: 65122AD495A7F5B2

View file

@ -2028,8 +2028,8 @@ scanTxNative config pipe = do
if isValidSaplingViewingKey (E.encodeUtf8 $ oviewkey k) if isValidSaplingViewingKey (E.encodeUtf8 $ oviewkey k)
then do then do
print "decoding Sapling tx" print "decoding Sapling tx"
let decodedSapList' = concatMap (decodeSaplingTx $ oviewkey k) txList' decodedSapList' <- mapM (decodeSaplingTx $ oviewkey k) txList'
let zList = catMaybes decodedSapList' let zList = concatMap catMaybes decodedSapList'
mapM_ (recordPayment pipe (c_dbName config) (oaddress k)) zList mapM_ (recordPayment pipe (c_dbName config) (oaddress k)) zList
else do else do
let vk = decodeUfvk $ E.encodeUtf8 $ oviewkey k let vk = decodeUfvk $ E.encodeUtf8 $ oviewkey k
@ -2043,8 +2043,10 @@ scanTxNative config pipe = do
let decodedOrchList = concatMap (decodeUnifiedOrchardTx v) txList' let decodedOrchList = concatMap (decodeUnifiedOrchardTx v) txList'
let oList = catMaybes decodedOrchList let oList = catMaybes decodedOrchList
mapM_ (recordPayment pipe (c_dbName config) (oaddress k)) oList mapM_ (recordPayment pipe (c_dbName config) (oaddress k)) oList
decodeSaplingTx :: T.Text -> RawTxResponse -> [Maybe ZcashTx] decodeSaplingTx :: T.Text -> RawTxResponse -> IO [Maybe ZcashTx]
decodeSaplingTx k t = decodeSaplingTx k t = do
print (show t)
return $
map map
(buildZcashTx t . (buildZcashTx t .
decodeSaplingOutput (bytes (decodeBech32 $ E.encodeUtf8 k))) decodeSaplingOutput (bytes (decodeBech32 $ E.encodeUtf8 k)))