You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The function relies on calling tx_search which is only available if the node has indexing turned on (which we disable by default given the increase in storage consumption).
Even if the indexer is indeed available, the function produces a query based on the attributes transfer.source, transfer.target, transfer.token, but we never actually produce these attributes in finalize_block. Indeed, from some tests I ran, the query always returns an empty response.
The text was updated successfully, but these errors were encountered:
I believe there's an issue with
query_tx_deltas
.namada/sdk/src/masp.rs
Line 1909 in 50caebb
The function relies on calling
tx_search
which is only available if the node has indexing turned on (which we disable by default given the increase in storage consumption).Even if the indexer is indeed available, the function produces a query based on the attributes
transfer.source
,transfer.target
,transfer.token
, but we never actually produce these attributes infinalize_block
. Indeed, from some tests I ran, the query always returns an empty response.The text was updated successfully, but these errors were encountered: