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
Currently with the most recent calls that have been removed from runtime 1003003 (ex: tx.treasury.proposeSend), it has caused the treasury page from no longer being available since app routing requires the above example tx.
In addition to that, there is a weird issue currently where when I get the page up and running again, it fails to persist the data it originally gets. For example, it will get all the proposals and render them correctly, but on the next subscribed call it makes it gets back no data, and empties the page of all proposals. I can't narrow down the issue exactly just yet, but it feels like to me it somehow is hitting: https://github.com/polkadot-js/api/blob/master/packages/api-derive/src/treasury/proposals.ts#L97-L101
That being said, const totalProposals = useCall<BN>(api.query.treasury.proposalCount); is also returning zero which is incorrect.
The text was updated successfully, but these errors were encountered:
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue if you think you have a related problem or query.
Currently with the most recent calls that have been removed from runtime 1003003 (ex:
tx.treasury.proposeSend
), it has caused the treasury page from no longer being available since app routing requires the above example tx.In addition to that, there is a weird issue currently where when I get the page up and running again, it fails to persist the data it originally gets. For example, it will get all the proposals and render them correctly, but on the next subscribed call it makes it gets back no data, and empties the page of all proposals. I can't narrow down the issue exactly just yet, but it feels like to me it somehow is hitting: https://github.com/polkadot-js/api/blob/master/packages/api-derive/src/treasury/proposals.ts#L97-L101
That being said,
const totalProposals = useCall<BN>(api.query.treasury.proposalCount);
is also returning zero which is incorrect.The text was updated successfully, but these errors were encountered: