Packages

object ReceiptFetchingFailed extends ErrorCode

Annotations
@Explanation(explanation = """This error occurs when the Ethereum sequencer attempts to fetch the transaction receipt for a
|previously submitted transaction but receives an exception. Usually, this is caused by network errors,
|the Ethereum client node being overloaded or the Ethereum sequencer reaching its `transactionReceiptPollingAttempts`
|for a given transaction.
|The fetching of transaction receipts of submitted transactions is separate from the Ethereum sequencer's
|read-stream used to ingest new transactions. Thus, in this sense, this error is purely informative and can be
|caused by transient issues (such as a transient network outage). Note, that the Canton nonce manager
|refreshes his cache whenever this error occurs which may unblock stuck transactions with a too-high nonce.
|"""
)
@Resolution(resolution = """Usually, this error should resolve by itself. If you frequently see this error, ensure that
|the Ethereum account of the Ethereum sequencer is used by no one else and that the Ethereum client doesn't
|drop submitted transactions through being overloaded or reaching a full txpool. If this errors keeps occurring,
|please contact support.
|"""
)
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ReceiptFetchingFailed
  2. ErrorCode
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final case class Warn(e: Throwable)(implicit logger: ContextualizedErrorLogger) extends Impl with Product with Serializable

Value Members

  1. val category: ErrorCategory
    Definition Classes
    ErrorCode
  2. implicit val code: ErrorCode
    Definition Classes
    ErrorCode
  3. def codeStr(correlationId: Option[String]): String

    The machine readable error code string, uniquely identifiable by the error id, error category and correlation id.

    The machine readable error code string, uniquely identifiable by the error id, error category and correlation id. e.g. NO_DOMAINS_CONNECTED(2,ABC234)

    Definition Classes
    ErrorCode
  4. def errorConveyanceDocString: Option[String]

    The error conveyance doc string provides a statement about the form this error will be returned to the user

    The error conveyance doc string provides a statement about the form this error will be returned to the user

    Definition Classes
    ErrorCode
  5. val id: String
    Definition Classes
    ErrorCode
  6. def logLevel: Level

    Log level of the error code

    Log level of the error code

    Generally, the log level is defined by the error category. In rare cases, it might be overridden by the error code.

    Definition Classes
    ErrorCode
  7. implicit val parent: ErrorClass
    Definition Classes
    ErrorCode
  8. def toMsg(cause: => String, correlationId: Option[String], limit: Option[Int]): String

    returns

    message including error category id, error code id, correlation id and cause

    Definition Classes
    ErrorCode