eth-testing/chains/postmerge1/chain.go
Roy Crihfield 88b1330e13
All checks were successful
Test / Run unit tests (push) Successful in 3m42s
Add post-Merge fixtures and refactor (#6)
- 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
2024-07-08 06:35:28 +00:00

19 lines
425 B
Go

// This fixture is the first using Pebble instead of Leveldb. It was generated by a fixturenet
// running geth 1.14.5 using a "merged from Genesis" configuration, as opposed to the previous
// fixtures for which the Merge occurred at block 1.
package postmerge1
import (
"github.com/cerc-io/eth-testing/chains"
)
var (
ChainData, err = chains.GetFixture("postmerge1")
)
func init() {
if err != nil {
panic(err)
}
}