Set correct head in forkNoPowerEPS
This commit is contained in:
parent
41aef3d2eb
commit
ed3a2b0025
@ -5,7 +5,7 @@ import "fmt"
|
|||||||
var CurrentCommit string
|
var CurrentCommit string
|
||||||
|
|
||||||
// BuildVersion is the local build version, set by build system
|
// BuildVersion is the local build version, set by build system
|
||||||
const BuildVersion = "0.1.3"
|
const BuildVersion = "0.1.4"
|
||||||
|
|
||||||
var UserVersion = BuildVersion + CurrentCommit
|
var UserVersion = BuildVersion + CurrentCommit
|
||||||
|
|
||||||
@ -31,7 +31,7 @@ func (ve Version) EqMajorMinor(v2 Version) bool {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// APIVersion is a semver version of the rpc api exposed
|
// APIVersion is a semver version of the rpc api exposed
|
||||||
var APIVersion Version = newVer(0, 1, 3)
|
var APIVersion Version = newVer(0, 1, 4)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
majorMask = 0xff0000
|
majorMask = 0xff0000
|
||||||
|
@ -108,11 +108,16 @@ func (sm *StateManager) forkNoPowerEPS(ctx context.Context, pstate cid.Cid) (cid
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
spa.Head, err = fixed.Flush()
|
head.ProvingBuckets, err = fixed.Flush()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return xerrors.Errorf("flushing bucket amt: %w", err)
|
return xerrors.Errorf("flushing bucket amt: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
spa.Head, err = cst.Put(ctx, &head)
|
||||||
|
if err != nil {
|
||||||
|
return xerrors.Errorf("putting actor head: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}); err != nil {
|
}); err != nil {
|
||||||
return cid.Undef, err
|
return cid.Undef, err
|
||||||
|
@ -16,6 +16,8 @@ func (sm *StateManager) handleStateForks(ctx context.Context, pstate cid.Cid, he
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return cid.Undef, xerrors.Errorf("executing state fork in epoch %d: %w", i, err)
|
return cid.Undef, xerrors.Errorf("executing state fork in epoch %d: %w", i, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
log.Infof("forkNoPowerEPS state: %s", pstate)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user