Adjustments for erigon 2 upgrade prototype (#477)

Co-authored-by: Alexey Sharp <alexeysharp@Alexeys-iMac.local>
This commit is contained in:
ledgerwatch 2022-06-05 16:34:38 +01:00 committed by GitHub
parent fdf7c6598b
commit f16b285631
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -632,3 +632,11 @@ func (a *Aggregator) WriteAccountStorage(addr, loc []byte, value []byte) error {
copy(dbkey[len(addr):], loc)
return a.storage.Put(dbkey, value)
}
type FilesStats struct {
}
func (a *Aggregator) Stats() FilesStats {
var fs FilesStats
return fs
}