Roy Crihfield
29c99ddf6a
All checks were successful
Test / Run unit tests (push) Successful in 3m53s
For easier processing with chain-chunker. Reviewed-on: #8
17 lines
265 B
Go
17 lines
265 B
Go
// premerge1 is from a Clique-based pre-Merge chain with a single genesis allocation.
|
|
package premerge1
|
|
|
|
import (
|
|
"github.com/cerc-io/eth-testing/chains"
|
|
)
|
|
|
|
var (
|
|
ChainData, err = chains.GetFixture("premerge1")
|
|
)
|
|
|
|
func init() {
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|