mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 05:38:55 +00:00
3416962fc2
* package level godocs fixed * all beacon node godocs * comment and gaz Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
11 lines
266 B
Go
11 lines
266 B
Go
// Package interop contains useful utilities for persisting
|
|
// ssz-encoded states and blocks to disk during each state
|
|
// transition for development purposes.
|
|
package interop
|
|
|
|
import (
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
var log = logrus.WithField("prefix", "interop")
|