mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-05-02 03:02:54 -04:00
Code quality issues - Remove unused code (#6864)
* remove unused code * gofmt * remove junk file * bring back metrics-related functions * bring back keymanager's code
This commit is contained in:
@@ -27,9 +27,6 @@ func (store *Store) Close() error {
|
||||
func (store *Store) update(fn func(*bolt.Tx) error) error {
|
||||
return store.db.Update(fn)
|
||||
}
|
||||
func (store *Store) batch(fn func(*bolt.Tx) error) error {
|
||||
return store.db.Batch(fn)
|
||||
}
|
||||
func (store *Store) view(fn func(*bolt.Tx) error) error {
|
||||
return store.db.View(fn)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user