Compare commits

...

2 commits

Author SHA1 Message Date
f7b7dc6a3f
Add more debugging 2024-07-01 14:50:07 -05:00
14540ffb07
Add debugging 2024-07-01 14:35:34 -05:00

View file

@ -1994,6 +1994,7 @@ scanTxNative config pipe = do
txList <- mapM (getTxData nodeUser nodePwd) txIdList txList <- mapM (getTxData nodeUser nodePwd) txIdList
print "filtering txs..." print "filtering txs..."
let filteredTxList = map fromJust $ filter filterTx txList let filteredTxList = map fromJust $ filter filterTx txList
print $ show filteredTxList
print "checking txs against keys..." print "checking txs against keys..."
mapM_ (checkTx filteredTxList) ownerList mapM_ (checkTx filteredTxList) ownerList
access pipe master (c_dbName config) $ access pipe master (c_dbName config) $
@ -2028,8 +2029,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,12 +2044,14 @@ 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
map print (show t)
(buildZcashTx t . return $
decodeSaplingOutput (bytes (decodeBech32 $ E.encodeUtf8 k))) map
(rt_shieldedOutputs t) (buildZcashTx t .
decodeSaplingOutput (bytes (decodeBech32 $ E.encodeUtf8 k)))
(rt_shieldedOutputs t)
decodeUnifiedSaplingTx :: BS.ByteString -> RawTxResponse -> [Maybe ZcashTx] decodeUnifiedSaplingTx :: BS.ByteString -> RawTxResponse -> [Maybe ZcashTx]
decodeUnifiedSaplingTx k t = decodeUnifiedSaplingTx k t =
map (buildZcashTx t . decodeSaplingOutput k) (rt_shieldedOutputs t) map (buildZcashTx t . decodeSaplingOutput k) (rt_shieldedOutputs t)