refactor(confix): properly update migrate and diff command (#18596)

This commit is contained in:
Julien Robert
2023-11-30 09:59:23 +00:00
committed by GitHub
parent a37f4165f8
commit 519c55cd53
9 changed files with 295 additions and 55 deletions
+2 -2
View File
@@ -17,9 +17,9 @@ const MaxBitLen = 256
// Integer errors
var (
// ErrIntOverflow is the error returned when an integer overflow occurs
ErrIntOverflow = errors.New("Integer overflow")
ErrIntOverflow = errors.New("integer overflow")
// ErrDivideByZero is the error returned when a divide by zero occurs
ErrDivideByZero = errors.New("Divide by zero")
ErrDivideByZero = errors.New("divide by zero")
)
func newIntegerFromString(s string) (*big.Int, bool) {