mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
core/state: fixed lint
This commit is contained in:
parent
5619b68221
commit
b0bd5d14b9
1 changed files with 1 additions and 1 deletions
|
|
@ -548,7 +548,7 @@ func (s *StateDB) getDeletedStateObject(addr common.Address) *stateObject {
|
|||
s.setError(fmt.Errorf("getDeleteStateObject (%x) error: %v", addr[:], err))
|
||||
return nil
|
||||
}
|
||||
if len(enc) == 0{
|
||||
if len(enc) == 0 {
|
||||
return nil
|
||||
}
|
||||
if err := rlp.DecodeBytes(enc, &data); err != nil {
|
||||
|
|
|
|||
Loading…
Reference in a new issue