File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 7
7
"github.com/filecoin-project/go-state-types/abi"
8
8
filbig "github.com/filecoin-project/go-state-types/big"
9
9
"github.com/filecoin-project/go-state-types/builtin"
10
- "github.com/filecoin-project/go-state-types/builtin/v13 /miner"
10
+ "github.com/filecoin-project/go-state-types/builtin/v14 /miner"
11
11
lotusapi "github.com/filecoin-project/lotus/api"
12
12
"github.com/filecoin-project/lotus/chain/types"
13
13
miner8 "github.com/filecoin-project/specs-actors/v8/actors/builtin/miner"
Original file line number Diff line number Diff line change @@ -2,9 +2,10 @@ package util
2
2
3
3
import (
4
4
"context"
5
+ "fmt"
5
6
6
- "github.com/filecoin-project/go-state-types/builtin/v13 /miner"
7
- smoothing13 "github.com/filecoin-project/go-state-types/builtin/v13 /util/smoothing"
7
+ "github.com/filecoin-project/go-state-types/builtin/v14 /miner"
8
+ smoothing14 "github.com/filecoin-project/go-state-types/builtin/v14 /util/smoothing"
8
9
lotusapi "github.com/filecoin-project/lotus/api"
9
10
"github.com/filecoin-project/lotus/blockstore"
10
11
"github.com/filecoin-project/lotus/chain/actors/adt"
@@ -35,8 +36,8 @@ func ConvertSectorType(sector *miner.SectorOnChainInfo) *miner8.SectorOnChainInf
35
36
}
36
37
}
37
38
38
- func ConvertSmoothing (fe smoothing.FilterEstimate ) smoothing13 .FilterEstimate {
39
- return smoothing13 .FilterEstimate {
39
+ func ConvertSmoothing (fe smoothing.FilterEstimate ) smoothing14 .FilterEstimate {
40
+ return smoothing14 .FilterEstimate {
40
41
PositionEstimate : fe .PositionEstimate ,
41
42
VelocityEstimate : fe .VelocityEstimate ,
42
43
}
You can’t perform that action at this time.
0 commit comments