Skip to content

Commit 22a1eaa

Browse files
authored
fix(spcli): send SettleDealPayments msg to f05 for lotus-miner actor settle-deal (#13142)
Fixes: #13141
1 parent e2a9b7c commit 22a1eaa

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
- chore: disable F3 participation via gateway ([filecoin-project/lotus#13123](https://github.com/filecoin-project/lotus/pull/13123)
1414
- chore: increase the F3 GMessage buffer size to 1024 ([filecoin-project/lotus#13126](https://github.com/filecoin-project/lotus/pull/13126))
1515
- feat(f3): integrate cached MapReduce from go-hamt-ipld, which improves performance of F3 power table calculation by 6-10x ([filecoin-project/lotus#13134](https://github.com/filecoin-project/lotus/pull/13134))
16+
- fix(spcli): send SettleDealPayments msg to f05 for `lotus-miner actor settle-deal` ([filecoin-project/lotus#13142](https://github.com/filecoin-project/lotus/pull/13142))
1617

1718
# Node v1.33.0 / 2025-05-08
1819
The Lotus v1.33.0 release introduces experimental v2 APIs with F3 awareness, featuring a new TipSet selection mechanism that significantly enhances how applications interact with the Filecoin blockchain. This release candidate also adds F3-aware Ethereum APIs via the /v2 endpoint. All of the /v2 APIs implement intelligent fallback mechanisms between F3 and Expected Consensus and are exposed through the Lotus Gateway.

cli/spcli/actor.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ func ActorDealSettlementCmd(getActor ActorAddressGetter) *cli.Command {
9595
}
9696

9797
smsg, err := api.MpoolPushMessage(ctx, &types.Message{
98-
To: maddr,
98+
To: marketactor.Address,
9999
From: mi.Owner,
100100
Value: types.NewInt(0),
101101
Method: marketactor.Methods.SettleDealPaymentsExported,

0 commit comments

Comments
 (0)