mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-19 13:21:37 +00:00
p2p/enode: fix whitespace lint
This commit is contained in:
parent
dbdf02906e
commit
4aceb34e11
1 changed files with 0 additions and 1 deletions
|
|
@ -230,7 +230,6 @@ func (db *DB) fetchUint64(key []byte) uint64 {
|
|||
|
||||
// storeUint64 stores an integer in the given key.
|
||||
func (db *DB) storeUint64(key []byte, n uint64) error {
|
||||
|
||||
blob := make([]byte, binary.MaxVarintLen64)
|
||||
blob = blob[:binary.PutUvarint(blob, n)]
|
||||
return db.lvl.Set(key, blob, pebble.Sync)
|
||||
|
|
|
|||
Loading…
Reference in a new issue