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 trying to solve very slow transaction speed for push transactions on EOS Dart, so these are just some inefficiencies that I found. Investigating further
Multiple redundant calls into chain
pushTransactions calls getInfo and getBlock, then calls _pushTransactionArgs
_pushTransactionArgs calls getRequiredKeys
getRequiredKeys calls getInfo and getBlock again
It would be better to pass around info and block objects since this all happens inside one pushTransactions call
The text was updated successfully, but these errors were encountered:
Currently trying to solve very slow transaction speed for push transactions on EOS Dart, so these are just some inefficiencies that I found. Investigating further
Multiple redundant calls into chain
pushTransactions
callsgetInfo
andgetBlock
, then calls_pushTransactionArgs
_pushTransactionArgs
callsgetRequiredKeys
getRequiredKeys
callsgetInfo
andgetBlock
againIt would be better to pass around info and block objects since this all happens inside one pushTransactions call
The text was updated successfully, but these errors were encountered: