mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-12-26 00:05:18 +00:00
9 lines
278 B
Go
9 lines
278 B
Go
package common
|
|
|
|
const (
|
|
ErrGetStateDB = "get EVM StateDB failed"
|
|
ErrInvalidNumberOfArgs = "invalid number of arguments; expected %d; got: %d"
|
|
ErrSenderNotOrigin = "msg.sender is not from tx origin"
|
|
ErrWriteOnReadOnly = "read only call to write functions"
|
|
)
|