We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
we need a flexibility to specify index of the transaction where we want to start the range
so that we can have tx range: {start_tx_index .. last tx in the block}.step(increment)
{start_tx_index .. last tx in the block}.step(increment)
pub struct TransactionsInBlockDatalake { // target block number pub target_block: u64, // ex. "tx.to" , "tx.gas_price" or "tx_receipt.success", "tx_receipt.cumulative_gas_used" pub sampled_property: TransactionsCollection, // start index pub tx_start_index: u64 // increment of transactions pub increment: u64, }
The text was updated successfully, but these errors were encountered:
this is resolve in #70
Sorry, something went wrong.
No branches or pull requests
we need a flexibility to specify index of the transaction where we want to start the range
so that we can have tx range:
{start_tx_index .. last tx in the block}.step(increment)
The text was updated successfully, but these errors were encountered: