mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
435 B
24 lines
435 B
10 years ago
|
package state
|
||
10 years ago
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"math/big"
|
||
|
)
|
||
|
|
||
|
type GasLimitErr struct {
|
||
|
Message string
|
||
|
Is, Max *big.Int
|
||
|
}
|
||
|
|
||
|
func IsGasLimitErr(err error) bool {
|
||
|
_, ok := err.(*GasLimitErr)
|
||
|
|
||
|
return ok
|
||
|
}
|
||
|
func (err *GasLimitErr) Error() string {
|
||
|
return err.Message
|
||
|
}
|
||
|
func GasLimitError(is, max *big.Int) *GasLimitErr {
|
||
|
return &GasLimitErr{Message: fmt.Sprintf("GasLimit error. Max %s, transaction would take it to %s", max, is), Is: is, Max: max}
|
||
|
}
|