-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Support lotus 1.30 * Update parser * Upgrade filecoin-ffi * fix makefile * linting issues
- Loading branch information
1 parent
98a7a4f
commit 76c16d0
Showing
11 changed files
with
202 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# | ||
# Generated by @zondax/cli | ||
# | ||
run: | ||
skip-dirs: | ||
- tests/mocks | ||
- extern | ||
- pkg/mod | ||
skip-files: | ||
- ".*_test\\.go$" | ||
- "tools/trace_retriever.go" | ||
- "services/construction.go" | ||
- "main.go" | ||
|
||
linters: | ||
enable: | ||
- gofmt | ||
- gosec | ||
- goconst | ||
- gocritic | ||
- staticcheck | ||
- gosimple | ||
- goconst | ||
- bodyclose | ||
- unconvert | ||
- unparam | ||
- unused | ||
- durationcheck | ||
- makezero | ||
- reassign | ||
|
||
issues: | ||
exclude-rules: | ||
- path: _test\.go | ||
linters: | ||
- gosec | ||
- path: tests/.* | ||
linters: | ||
- typecheck | ||
- path: tools/.* | ||
linters: | ||
- typecheck | ||
- path: services/.* | ||
linters: | ||
- typecheck | ||
- path: main.go | ||
linters: | ||
- typecheck | ||
- path: pkg/mod/.* | ||
linters: | ||
- typecheck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule filecoin-ffi
updated
31 files
+0 −373 | .circleci/config.yml | |
+61 −0 | .github/actions/configure-environment/action.yml | |
+147 −0 | .github/workflows/ci.yml | |
+84 −0 | .github/workflows/release-check.yml | |
+21 −0 | .github/workflows/releaser.yml | |
+27 −19 | README.md | |
+28 −0 | RELEASE.md | |
+1 −5 | bls_test.go | |
+20 −15 | cgo/const.go | |
+9 −5 | cgo/proofs.go | |
+1 −1 | cgo/types.go | |
+28 −28 | go.mod | |
+72 −160 | go.sum | |
+54 −24 | install-filcrypto | |
+18 −4 | proofs.go | |
+2 −2 | proofs_test.go | |
+1,189 −506 | rust/Cargo.lock | |
+37 −16 | rust/Cargo.toml | |
+1 −1 | rust/rust-toolchain.toml | |
+23 −2 | rust/scripts/build-release.sh | |
+25 −25 | rust/scripts/publish-release.sh | |
+2 −2 | rust/src/bls/api.rs | |
+32 −70 | rust/src/fvm/engine.rs | |
+82 −7 | rust/src/fvm/machine.rs | |
+1 −0 | rust/src/fvm/mod.rs | |
+51 −28 | rust/src/proofs/api.rs | |
+36 −0 | rust/src/proofs/types.rs | |
+2 −2 | rust/src/util/api.rs | |
+0 −18 | sector_update.go | |
+3 −0 | version.json | |
+5 −6 | workflows.go |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.