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
Every script of the same plutus version shares the same TxInfo, because it does not depend on the redeemer, but on the whole of a transaction.
Currently we are computing the same TxInfo for every script in the transaction, which is redundant computation. This can be mitigated with some memoization that lazily stores TxInfo for every plutus ledger version supported in a particular era.
The text was updated successfully, but these errors were encountered:
Every script of the same plutus version shares the same
TxInfo
, because it does not depend on the redeemer, but on the whole of a transaction.Currently we are computing the same
TxInfo
for every script in the transaction, which is redundant computation. This can be mitigated with some memoization that lazily stores TxInfo for every plutus ledger version supported in a particular era.The text was updated successfully, but these errors were encountered: