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 a51eb25 commit 473900fCopy full SHA for 473900f
types/errors/errors.go
@@ -153,6 +153,9 @@ var (
153
// ErrOCCAbort defines an error exncountered by a transaction when it encounters an OCC conflict resulting in an Abort
154
ErrOCCAbort = Register(RootCodespace, 43, "occ abort")
155
156
+ // ErrUnsupportedTxType defines an error for an unsupported transaction type (e.g., EIP-4844 transactions)
157
+ ErrUnsupportedTxType = Register(RootCodespace, 44, "unsupported transaction type")
158
+
159
// ErrPanic is only set when we recover from a panic, so we know to
160
// redact potentially sensitive system info
161
ErrPanic = Register(UndefinedCodespace, 111222, "panic")
0 commit comments