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
Per default refetch the chain tip at most every 20 seconds
At the current state, every access to protocol params causes at least
one chain tip fetch. Due to the potential delay of this request, often
another protocol params fetch is triggered as well.
This significantly (and mostly unnecessarily) slows down transaction building.
This fix caches the chain tip for a default of 20 seconds (the average
slot time), making sure that subsequent calls to _is_chain_tip_updated
return without any delay, drastically speeding up tx building.
0 commit comments