Cory Schwartz
5ec084a653
add test for the limit func
2022-04-28 00:45:34 -07:00
Łukasz Magiera
779e923854
sealing: ComputeDataCid review
2022-04-27 20:44:02 +02:00
vyzo
0295d22742
Merge pull request #8537 from filecoin-project/fix/nv16-testing-bundles
...
[nv16] testing bundles with fake proofs
2022-04-27 18:25:26 +03:00
vyzo
f80d10f3be
make docsgen
2022-04-27 17:57:05 +03:00
vyzo
b29a182da7
fix docgen
2022-04-27 17:57:04 +03:00
vyzo
53ca3b64e1
normalize itest PrecommitChallengeDelay to 10, matching the test bundles
2022-04-27 17:57:04 +03:00
vyzo
31d193702b
don't parse error messages, just check exit codes
2022-04-27 17:57:04 +03:00
vyzo
7c9ce49362
update bundles
2022-04-27 17:57:00 +03:00
Łukasz Magiera
a2d90625d2
sealing: Fix tests
2022-04-26 21:43:24 +02:00
Łukasz Magiera
d7c52f8adf
sealing: ComputeDataCid miner API
2022-04-26 21:37:48 +02:00
jennijuju
48c54605ae
release v1.15.2-rc2
2022-04-26 21:19:03 +02:00
Łukasz Magiera
1aed631fe5
sealing: DataCid on workers
2022-04-26 20:36:23 +02:00
vyzo
30ed272aa9
fetch testing-fwp bundle
...
use testing-fwp bundle when InsecurePostValidation is true
testing-fwp is testing-fake-proofs
2022-04-26 18:38:52 +03:00
Rjan
a50a20b5a7
fix: worker: Download proofs if PRU2 is enabled
...
The lotus-worker does not check or download the params if Prove Replica Update tasks are enabled.
2022-04-26 09:10:38 +02:00
Phi-rjan
1162b02e60
Merge pull request #8528 from rjan90/ux/description-lotus-wallet
...
fix: ux: update `lotus-wallet run` description
2022-04-25 15:57:50 +02:00
Steven Allen
5b1800556b
ci: fix linting
2022-04-25 14:13:16 +02:00
Phi-rjan
825cdb8db9
Update cmd/lotus-wallet/main.go
...
Co-authored-by: Aayush Rajasekaran <arajasek94@gmail.com>
2022-04-25 08:56:34 +02:00
swift-mx
6c40d363f5
fix: update StatApplied when fvm apply message
2022-04-24 11:50:54 +08:00
jennijuju
bd9e8c7663
update go version thats needed by the new libp2p
2022-04-23 22:20:07 +02:00
Aayush Rajasekaran
52d5d57460
Merge pull request #8540 from filecoin-project/fix/market-deal-api-pointer
...
fix: api: Make MarketListDeals and DealsList return pointers for MarketDeal
2022-04-23 11:55:22 -04:00
Travis Person
ea4f599233
Make MarketListDeals and DealsList return points for MarketDeal
2022-04-22 23:26:29 +00:00
Aayush
3eb007776a
Update actors
2022-04-22 11:40:59 -04:00
Jiaying Wang
2be9452ced
Merge pull request #8526 from masih/idxprov-topic-by-netname
...
fix: market: Infer index provider topic from network name by default
2022-04-22 15:32:58 +02:00
vyzo
efad692353
go mod tidy
2022-04-22 02:54:30 +02:00
vyzo
357da15e5c
update go-libp2p@v0.19
2022-04-22 02:53:05 +02:00
vyzo
cc328689e1
dear linter, using xerrors is what we want to do.
2022-04-22 02:51:15 +02:00
Masih H. Derkani
d044e30e12
Infer index provider topic from network name by default
...
Index provider integration uses a gossipsub topic to announce changes to
the advertised content. The topic name was fixed to the default topic
which is `/indexer/ingest/mainnet`.
In the case of lotus, the gossipsub validators enforce a list of topics
the instance is permitted to join by setting subscription filter option
when `PubSub` instance is constructed via DI.
Having the fixed topic name meant that any SP starting up a node on a
network other than `mainnet` would have to override the default config
to avoid the node crashing when index provider is enabled.
Instead of a fixed default, the changes here infer the allowed indexer
topic name from network name automatically if the topic configuration is
left empty.
Fixes #8510
2022-04-22 02:46:05 +02:00
Jiaying Wang
ff987e0b9d
Merge pull request #8511 from filecoin-project/deps/update-libp2p
...
deps: update go-libp2p@v0.19
2022-04-22 02:44:45 +02:00
vyzo
cc294496ab
go mod tidy
2022-04-22 02:20:45 +02:00
vyzo
ed0b4b0bfa
update go-libp2p@v0.19
2022-04-22 02:20:45 +02:00
Aayush
eb9aa039bb
Set interop (caterpillarnet) params
2022-04-21 17:00:44 -04:00
Jiaying Wang
bab500bec5
Merge pull request #8531 from filecoin-project/fix/lint
...
chore: fix lint issue
2022-04-21 13:24:13 -04:00
vyzo
1c8880ed2c
dear linter, using xerrors is what we want to do.
2022-04-21 20:10:34 +03:00
vyzo
bc32eec051
Merge pull request #8530 from filecoin-project/fix/nv16-itests-paych
...
NV16: fix paych
2022-04-21 20:05:03 +03:00
vyzo
f017d43aae
make gen
2022-04-21 19:19:20 +03:00
vyzo
0def6cb9e1
fix paymentch actor code ID for construction
2022-04-21 19:19:13 +03:00
Aayush Rajasekaran
a7dc3f519b
Merge pull request #8521 from filecoin-project/fix/itests-nv16
...
[nv16] improve itest situation and preload manifests in cli
2022-04-21 10:12:16 -04:00
Masih H. Derkani
f273a440f0
Infer index provider topic from network name by default
...
Index provider integration uses a gossipsub topic to announce changes to
the advertised content. The topic name was fixed to the default topic
which is `/indexer/ingest/mainnet`.
In the case of lotus, the gossipsub validators enforce a list of topics
the instance is permitted to join by setting subscription filter option
when `PubSub` instance is constructed via DI.
Having the fixed topic name meant that any SP starting up a node on a
network other than `mainnet` would have to override the default config
to avoid the node crashing when index provider is enabled.
Instead of a fixed default, the changes here infer the allowed indexer
topic name from network name automatically if the topic configuration is
left empty.
Fixes #8510
2022-04-21 14:00:53 +01:00
Rjan
295bf03e4d
fix: ux: update lotus-wallet run
description
...
Update the `lotus-wallet run` to include that a `FULLNODE_API_INFO` env variable needs to be set before running
2022-04-21 14:21:09 +02:00
vyzo
270f962489
Merge pull request #8527 from filecoin-project/fix/itests-nv16-msig
...
fix multisig for nv16
2022-04-21 15:13:55 +03:00
vyzo
2d93697fe3
make gen
2022-04-21 15:09:58 +03:00
vyzo
688e8f3c09
fix multisig creation to not use the synthetic CIDs after v8
2022-04-21 15:09:49 +03:00
vyzo
090c655422
remove log spam
2022-04-21 14:18:21 +03:00
vyzo
75f00e92f5
improve concurrency story of manifest state
2022-04-21 13:53:30 +03:00
vyzo
1366901ded
preload manifest in cli
2022-04-21 13:26:22 +03:00
vyzo
8ea00a3fc0
update builtin-actors bundle
2022-04-21 13:21:24 +03:00
Cory Schwartz
9fd3f3f73a
fix itests
2022-04-20 20:51:15 -07:00
Cory Schwartz
30559a0d78
lint
2022-04-20 20:46:32 -07:00
Cory Schwartz
c2b7ffbae5
fix test
2022-04-20 20:33:37 -07:00
Cory Schwartz
9bf9843ff6
add metrics
2022-04-20 19:48:41 -07:00