File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -28,8 +28,6 @@ github.com/filecoin-project/go-state-types v0.0.0-20200903145444-247639ffa6ad/go
28
28
github.com/filecoin-project/go-state-types v0.0.0-20200904021452-1883f36ca2f4 /go.mod h1:IQ0MBPnonv35CJHtWSN3YY1Hz2gkPru1Q9qoaYLxx9I =
29
29
github.com/filecoin-project/go-state-types v0.0.0-20201102161440-c8033295a1fc /go.mod h1:ezYnPf0bNkTsDibL/psSz5dy4B5awOJ/E7P2Saeep8g =
30
30
github.com/filecoin-project/go-state-types v0.1.10 /go.mod h1:UwGVoMsULoCK+bWjEdd/xLCvLAQFBC7EDT477SKml+Q =
31
- github.com/filecoin-project/go-state-types v0.11.1 h1:GDtCN9V18bYVwXDZe+vJXc6Ck+qY9OUaQqpoVlp1FAk =
32
- github.com/filecoin-project/go-state-types v0.11.1 /go.mod h1:SyNPwTsU7I22gL2r0OAPcImvLoTVfgRwdK/Y5rR1zz8 =
33
31
github.com/filecoin-project/go-state-types v0.11.2-0.20230712101859-8f37624fa540 h1:v0fbEnBrMIjlxLve1sJTJE0YNGg58SNiP5sxQtr3trc =
34
32
github.com/filecoin-project/go-state-types v0.11.2-0.20230712101859-8f37624fa540 /go.mod h1:SyNPwTsU7I22gL2r0OAPcImvLoTVfgRwdK/Y5rR1zz8 =
35
33
github.com/filecoin-project/specs-actors v0.9.4 /go.mod h1:BStZQzx5x7TmCkLv0Bpa07U6cPKol6fd3w9KjMPZ6Z4 =
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ impl TryFrom<u32> for EngineVersion {
71
71
fn try_from ( value : u32 ) -> Result < Self , Self :: Error > {
72
72
match value {
73
73
16 | 17 => Ok ( EngineVersion :: V1 ) ,
74
- 18 | 19 | 20 => Ok ( EngineVersion :: V2 ) ,
74
+ 18 | 19 | 20 | 21 => Ok ( EngineVersion :: V2 ) ,
75
75
_ => return Err ( anyhow ! ( "network version not supported" ) ) ,
76
76
}
77
77
}
You can’t perform that action at this time.
0 commit comments