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

feat: bump lotus to v1.17.0 #90

Merged
merged 4 commits into from
Aug 5, 2022
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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Changed
- Bump Lotus to v1.17.0
- Bump Boost to v1.2.1 (unreleased commP fix commit)
2 changes: 1 addition & 1 deletion extern/filecoin-ffi
Submodule filecoin-ffi updated 64 files
+6 −22 .circleci/config.yml
+0 −4 Makefile
+1 −8 README.md
+38 −78 bls.go
+14 −14 bls_test.go
+0 −3 build.sh
+38 −11 cgo/blockstore.go
+61 −0 cgo/bls.go
+55 −0 cgo/const.go
+15 −4 cgo/errors.go
+29 −8 cgo/extern.go
+89 −0 cgo/fvm.go
+275 −0 cgo/helpers.go
+66 −0 cgo/helpers_test.go
+1 −2 cgo/libs.go
+383 −0 cgo/proofs.go
+673 −0 cgo/types.go
+20 −0 cgo/util.go
+2 −1 cgoleakdetect/runner.go
+62 −110 distributed.go
+0 −50 filcrypto.yml
+88 −63 fvm.go
+0 −6,154 generated/cgo_helpers.go
+0 −9 generated/cgo_helpers.h
+0 −87 generated/const.go
+0 −1,356 generated/generated.go
+0 −538 generated/types.go
+38 −15 go.mod
+12 −243 go.sum
+9 −0 headerstubs/stdbool.h
+1 −0 headerstubs/stddef.h
+5 −2 headerstubs/stdint.h
+2 −0 install-filcrypto
+288 −506 proofs.go
+19 −22 proofs_test.go
+680 −901 rust/Cargo.lock
+14 −17 rust/Cargo.toml
+0 −11 rust/build.rs
+0 −26 rust/cbindgen.toml
+1 −1 rust/rust-toolchain
+5 −1 rust/scripts/build-release.sh
+168 −287 rust/src/bls/api.rs
+0 −1 rust/src/bls/mod.rs
+0 −79 rust/src/bls/types.rs
+20 −14 rust/src/fvm/blockstore/cgo.rs
+3 −3 rust/src/fvm/blockstore/fake.rs
+3 −3 rust/src/fvm/blockstore/overlay.rs
+21 −11 rust/src/fvm/cgo/error.rs
+0 −73 rust/src/fvm/cgo/mock.rs
+0 −8 rust/src/fvm/cgo/mod.rs
+11 −6 rust/src/fvm/externs.rs
+415 −195 rust/src/fvm/machine.rs
+2 −2 rust/src/fvm/mod.rs
+26 −78 rust/src/fvm/types.rs
+19 −0 rust/src/lib.rs
+1,608 −2,771 rust/src/proofs/api.rs
+29 −103 rust/src/proofs/helpers.rs
+222 −978 rust/src/proofs/types.rs
+52 −77 rust/src/util/api.rs
+229 −33 rust/src/util/types.rs
+77 −150 sector_update.go
+0 −7 tools.go
+8 −7 types.go
+9 −7 workflows.go
2 changes: 1 addition & 1 deletion filc/disk.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/application-research/filclient"
"github.com/application-research/filclient/keystore"
lmdb "github.com/filecoin-project/go-bs-lmdb"
"github.com/filecoin-project/lotus/chain/actors/builtin/market"
"github.com/filecoin-project/go-state-types/builtin/v8/market"
"github.com/filecoin-project/lotus/chain/types"
"github.com/filecoin-project/lotus/chain/wallet"
lcli "github.com/filecoin-project/lotus/cli"
Expand Down
6 changes: 3 additions & 3 deletions filclient.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ import (
"github.com/filecoin-project/go-fil-markets/storagemarket/network"
"github.com/filecoin-project/go-state-types/abi"
"github.com/filecoin-project/go-state-types/big"
"github.com/filecoin-project/go-state-types/builtin"
"github.com/filecoin-project/go-state-types/builtin/v8/market"
"github.com/filecoin-project/go-state-types/builtin/v8/paych"
"github.com/filecoin-project/lotus/api"
"github.com/filecoin-project/lotus/chain/actors/builtin/paych"
rpcstmgr "github.com/filecoin-project/lotus/chain/stmgr/rpc"
"github.com/filecoin-project/lotus/chain/types"
"github.com/filecoin-project/lotus/chain/wallet"
paychmgr "github.com/filecoin-project/lotus/paychmgr"
"github.com/filecoin-project/specs-actors/v6/actors/builtin"
"github.com/filecoin-project/specs-actors/v6/actors/builtin/market"
"github.com/google/uuid"
"github.com/ipfs/go-cid"
"github.com/ipfs/go-datastore"
Expand Down
1 change: 0 additions & 1 deletion filclient_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,6 @@ func initEnsemble(t *testing.T, cctx *cli.Context) (*kit.TestFullNode, *kit.Test

fmt.Printf("Initializing test network...\n")

kit.EnableLargeSectors(t)
kit.QuietMiningLogs()
client, miner, ensemble := kit.EnsembleMinimal(t,
kit.ThroughRPC(), // so filclient can talk to it
Expand Down
212 changes: 96 additions & 116 deletions go.mod

Large diffs are not rendered by default.

648 changes: 470 additions & 178 deletions go.sum

Large diffs are not rendered by default.