import { ServiceError } from '@grpc/grpc-js'; import { ErrorDetail, GatewayError } from './gatewayerror'; /** * SubmitError is thrown when a failure occurs submitting an endorsed transaction to the orderer. */ export declare class SubmitError extends GatewayError { /** * The ID of the transaction. */ transactionId: string; constructor(properties: Readonly<{ code: number; details: ErrorDetail[]; cause: ServiceError; transactionId: string; message?: string; }>); } //# sourceMappingURL=submiterror.d.ts.map