Skip to content

Commit

Permalink
Merge branch 'development' into kishan/fix/equivocatory-blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
kishansagathiya committed Jul 11, 2022
2 parents 8c59cef + 78c03b6 commit 74dd04a
Show file tree
Hide file tree
Showing 104 changed files with 5,123 additions and 5,009 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ jobs:
restore-keys: ${{ runner.os }}-go-mod

- name: Fuzz trie
run: go test -fuzz=Fuzz_Trie_PutAndGet -fuzztime=5m github.com/ChainSafe/gossamer/lib/trie
run: go test -run Fuzz_Trie_PutAndGet -fuzz=Fuzz_Trie_PutAndGet -fuzztime=5m github.com/ChainSafe/gossamer/lib/trie
2 changes: 1 addition & 1 deletion .github/workflows/mocks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
stable: true
check-latest: true

- run: go install github.com/vektra/mockery/v2@v2.10
- run: go install github.com/vektra/mockery/v2@v2.14

- run: go install github.com/golang/mock/mockgen@v1.6

Expand Down
5 changes: 0 additions & 5 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,6 @@ issues:
- revive
text: "package comment should be of the form"

- linters:
- revive
path: lib/runtime/life/
text: "don't use underscores in Go names;"

- linters:
- nolintlint
source: "^//nolint:revive"
Expand Down
3 changes: 0 additions & 3 deletions cmd/gossamer/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import (
"github.com/ChainSafe/gossamer/internal/log"
"github.com/ChainSafe/gossamer/lib/common"
"github.com/ChainSafe/gossamer/lib/genesis"
"github.com/ChainSafe/gossamer/lib/runtime/life"
"github.com/ChainSafe/gossamer/lib/runtime/wasmer"
"github.com/ChainSafe/gossamer/lib/utils"
"github.com/urfave/cli"
Expand Down Expand Up @@ -622,8 +621,6 @@ func setDotCoreConfig(ctx *cli.Context, tomlCfg ctoml.CoreConfig, cfg *dot.CoreC
switch tomlCfg.WasmInterpreter {
case wasmer.Name:
cfg.WasmInterpreter = wasmer.Name
case life.Name:
cfg.WasmInterpreter = life.Name
case "":
cfg.WasmInterpreter = gssmr.DefaultWasmInterpreter
default:
Expand Down
1 change: 0 additions & 1 deletion codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ coverage:
- "dot/network"
- "dot/peerset"
- "dot/sync"
- "lib/runtime/life"
- "lib/grandpa"
- "lib/blocktree"
50pc:
Expand Down
17 changes: 16 additions & 1 deletion devnet/cmd/scale-down-ecs-service/mocks/ecsapi.go

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

4 changes: 2 additions & 2 deletions dot/core/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (
"github.com/ChainSafe/gossamer/lib/runtime/wasmer"
"github.com/ChainSafe/gossamer/lib/services"
"github.com/ChainSafe/gossamer/lib/transaction"
cscale "github.com/centrifuge/go-substrate-rpc-client/v3/scale"
ctypes "github.com/centrifuge/go-substrate-rpc-client/v3/types"
cscale "github.com/centrifuge/go-substrate-rpc-client/v4/scale"
ctypes "github.com/centrifuge/go-substrate-rpc-client/v4/types"
)

var (
Expand Down
Loading

0 comments on commit 74dd04a

Please sign in to comment.