We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14a22cc commit d31923aCopy full SHA for d31923a
backend-rust/src/graphql_api/contract.rs
@@ -239,7 +239,8 @@ impl Contract {
239
.try_into()?;
240
// If `skip` is 0 and at least one event is taken, include the
241
// `init_transaction_event`.
242
- let include_initial_event = skip <= total_contract_events_count && skip + take >= total_contract_events_count;
+ let include_initial_event =
243
+ skip <= total_contract_events_count && skip + take >= total_contract_events_count;
244
// Adjust the `take` and `skip` values considering if the
245
// `init_transaction_event` is requested to be included or not.
246
0 commit comments