mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
swarm/storage/feed/lookup: Add Base to Epoch.String()
This commit is contained in:
parent
f87cc006bc
commit
78bf51827b
1 changed files with 1 additions and 1 deletions
|
|
@ -87,5 +87,5 @@ func (e *Epoch) Equals(epoch Epoch) bool {
|
|||
|
||||
// String implements the Stringer interface.
|
||||
func (e *Epoch) String() string {
|
||||
return fmt.Sprintf("Epoch{Time:%d, Level:%d}", e.Time, e.Level)
|
||||
return fmt.Sprintf("Epoch{Base: %d, Time:%d, Level:%d}", e.Base(), e.Time, e.Level)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue