cmd/geth: support bigints for --override.terminaltotaldifficulty (#24646)

Co-authored-by: Felix Lange <fjl@twurst.com>
This commit is contained in:
Marius van der Wijden
2022-04-13 11:28:23 +02:00
committed by GitHub
parent 9c82c646e4
commit ca298a2821
3 changed files with 5 additions and 4 deletions

View File

@ -154,11 +154,11 @@ func (b *bigValue) String() string {
}
func (b *bigValue) Set(s string) error {
int, ok := math.ParseBig256(s)
intVal, ok := math.ParseBig256(s)
if !ok {
return errors.New("invalid integer syntax")
}
*b = (bigValue)(*int)
*b = (bigValue)(*intVal)
return nil
}
@ -172,6 +172,7 @@ func (f BigFlag) String() string {
func (f BigFlag) Apply(set *flag.FlagSet) {
eachName(f.Name, func(name string) {
f.Value = new(big.Int)
set.Var((*bigValue)(f.Value), f.Name, f.Usage)
})
}