core: fix Registered state descriptor processing
It has simple boolean value encoded, no `strconv` needed (it actually chokes on such input).
This commit is contained in:
parent
141553da4c
commit
38d0efc96c
1 changed files with 4 additions and 6 deletions
|
@ -5,7 +5,6 @@ import (
|
|||
"math"
|
||||
"math/big"
|
||||
"sort"
|
||||
"strconv"
|
||||
"sync"
|
||||
"sync/atomic"
|
||||
"time"
|
||||
|
@ -684,13 +683,12 @@ func processValidatorStateDescriptor(descriptor *transaction.StateDescriptor, da
|
|||
return err
|
||||
}
|
||||
if descriptor.Field == "Registered" {
|
||||
isRegistered, err := strconv.ParseBool(string(descriptor.Value))
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
validatorState.Registered = isRegistered
|
||||
if len(descriptor.Value) == 1 {
|
||||
validatorState.Registered = descriptor.Value[0] != 0
|
||||
return dao.PutValidatorState(validatorState)
|
||||
}
|
||||
return errors.New("bad descriptor value")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue