/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { EndlessError } from './EndlessError'; /** * Information telling which batch submission transactions failed */ export type TransactionsBatchSingleSubmissionFailure = { error: EndlessError; /** * The index of which transaction failed, same as submission order */ transaction_index: number; };