2020-09-12 03:07:52 +00:00
|
|
|
package builtin
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2020-09-20 21:53:46 +00:00
|
|
|
smoothing0 "github.com/filecoin-project/specs-actors/actors/util/smoothing"
|
2020-09-15 23:47:58 +00:00
|
|
|
|
2020-09-19 04:30:24 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/network"
|
2020-09-12 03:07:52 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Version int
|
|
|
|
|
|
|
|
const (
|
|
|
|
Version0 = iota
|
|
|
|
)
|
|
|
|
|
|
|
|
// Converts a network version into a specs-actors version.
|
|
|
|
func VersionForNetwork(version network.Version) Version {
|
|
|
|
switch version {
|
2020-09-17 15:30:15 +00:00
|
|
|
case network.Version0, network.Version1, network.Version2:
|
2020-09-14 11:14:06 +00:00
|
|
|
return Version0
|
2020-09-12 03:07:52 +00:00
|
|
|
default:
|
|
|
|
panic(fmt.Sprintf("unsupported network version %d", version))
|
|
|
|
}
|
|
|
|
}
|
2020-09-15 23:47:58 +00:00
|
|
|
|
2020-09-19 04:30:24 +00:00
|
|
|
// TODO: Why does actors have 2 different versions of this?
|
2020-09-20 21:53:46 +00:00
|
|
|
type FilterEstimate = smoothing0.FilterEstimate
|
|
|
|
|
|
|
|
func FromV0FilterEstimate(v0 smoothing0.FilterEstimate) FilterEstimate {
|
|
|
|
return (FilterEstimate)(v0)
|
2020-09-19 04:30:24 +00:00
|
|
|
}
|