Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for network version 18 (FEVM) #1140

Merged
merged 14 commits into from
Mar 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ testfull: build
# testshort runs tests that don't require external dependencies such as postgres or redis
.PHONY: testshort
testshort:
go test -short ./... -v
go test -short ./...


.PHONY: lily
Expand Down
335 changes: 0 additions & 335 deletions chain/actors/actors.go

This file was deleted.

2 changes: 2 additions & 0 deletions chain/actors/adt/diff/generic.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ type ArrayDiffer interface {
// - All values that exist in curArr nnd not in prevArr are passed to ArrayDiffer.Add()
// - All values that exist in preArr and in curArr are passed to ArrayDiffer.Modify()
// - It is the responsibility of ArrayDiffer.Modify() to determine if the values it was passed have been modified.
//
// If `preArr` and `curArr` are both backed by /v3/AMTs with the same bitwidth use the more efficient Amt method.
func CompareArray(preArr, curArr adt.Array, out ArrayDiffer) error {
notNew := make(map[int64]struct{}, curArr.Length())
Expand Down Expand Up @@ -84,6 +85,7 @@ type MapDiffer interface {
// - All values that exist in curMap nnd not in prevArr are passed to MapDiffer.Add()
// - All values that exist in preMap and in curMap are passed to MapDiffer.Modify()
// - It is the responsibility of ArrayDiffer.Modify() to determine if the values it was passed have been modified.
//
// If `preMap` and `curMap` are both backed by /v3/HAMTs with the same bitwidth and hash function use the more efficient Hamt method.
func CompareMap(preMap, curMap adt.Map, out MapDiffer) error {
notNew := make(map[string]struct{})
Expand Down
Loading