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 problem: virtual ops now accessible only with enabled account_history plugin. So, without account_history get_ops_in_block API call just returns nothing.
So I propose the following thing:
Virtual ops storage to the database should be handled by separate plugin. virtual_ops for instance.
get_ops_in_block becomes a wrapper with the following logic:
Whether account_history is disabled, it reads block content using get_block
Whether account_history is enabled, it reads block content from account_history database
Adds virtual ops using virtual_ops plugin
The text was updated successfully, but these errors were encountered:
The problem: virtual ops now accessible only with enabled account_history plugin. So, without account_history
get_ops_in_block
API call just returns nothing.So I propose the following thing:
virtual_ops
for instance.account_history
is disabled, it reads block content using get_blockaccount_history
is enabled, it reads block content fromaccount_history
databasevirtual_ops
pluginThe text was updated successfully, but these errors were encountered: