Roy Crihfield
88b1330e13
All checks were successful
Test / Run unit tests (push) Successful in 3m42s
- Add `postmerge1` chaindata - Rename `small*` chaindata to `premerge*` - Move chains into `chains` sub package (avoids having a non-data directory named `chaindata`) - Add unit test Gitea workflow - Update geth to 1.14.5 Reviewed-on: #6
16 lines
179 B
Go
16 lines
179 B
Go
package premerge1
|
|
|
|
import (
|
|
"github.com/cerc-io/eth-testing/chains"
|
|
)
|
|
|
|
var (
|
|
ChainData, err = chains.GetFixture("premerge1")
|
|
)
|
|
|
|
func init() {
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|