Skip to content

Commit

Permalink
make gen.
Browse files Browse the repository at this point in the history
  • Loading branch information
raulk committed Feb 12, 2023
1 parent e8fd766 commit e43a1cc
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -723,6 +723,11 @@ workflows:
suite: itest-migration_nv19
target: "./itests/migration_nv19_test.go"

- test:
name: test-itest-migration_nv20
suite: itest-migration_nv20
target: "./itests/migration_nv20_test.go"

- test:
name: test-itest-mpool_msg_uuid
suite: itest-mpool_msg_uuid
Expand Down
Binary file modified build/openrpc/full.json.gz
Binary file not shown.
Binary file modified build/openrpc/gateway.json.gz
Binary file not shown.
Binary file modified build/openrpc/miner.json.gz
Binary file not shown.
23 changes: 23 additions & 0 deletions chain/actors/builtin/evm/v11.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion chain/consensus/filcns/compute_state.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ import (
"github.com/filecoin-project/go-state-types/abi"
actorstypes "github.com/filecoin-project/go-state-types/actors"
"github.com/filecoin-project/go-state-types/big"
blockadt "github.com/filecoin-project/specs-actors/actors/util/adt"

"github.com/filecoin-project/lotus/blockstore"
"github.com/filecoin-project/lotus/build"
"github.com/filecoin-project/lotus/chain/actors"
Expand All @@ -27,7 +29,6 @@ import (
"github.com/filecoin-project/lotus/chain/types"
"github.com/filecoin-project/lotus/chain/vm"
"github.com/filecoin-project/lotus/metrics"
blockadt "github.com/filecoin-project/specs-actors/actors/util/adt"
)

func NewActorRegistry() *vm.ActorRegistry {
Expand Down
12 changes: 12 additions & 0 deletions chain/events/filter/index_migration_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package filter

import (
"testing"

"github.com/stretchr/testify/require"
)

func TestMigration(t *testing.T) {
_, err := NewEventIndex("/Users/raul/hyperspace-test/sqlite/eventstest.db")
require.NoError(t, err)
}

0 comments on commit e43a1cc

Please sign in to comment.