Set correct head in forkNoPowerEPS

This commit is contained in:
Łukasz Magiera 2019-12-20 08:29:56 +01:00
parent 41aef3d2eb
commit ed3a2b0025
3 changed files with 10 additions and 3 deletions

View File

@ -5,7 +5,7 @@ import "fmt"
var CurrentCommit string
// BuildVersion is the local build version, set by build system
const BuildVersion = "0.1.3"
const BuildVersion = "0.1.4"
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
var APIVersion Version = newVer(0, 1, 3)
var APIVersion Version = newVer(0, 1, 4)
const (
majorMask = 0xff0000

View File

@ -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 {
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
}); err != nil {
return cid.Undef, err

View File

@ -16,6 +16,8 @@ func (sm *StateManager) handleStateForks(ctx context.Context, pstate cid.Cid, he
if err != nil {
return cid.Undef, xerrors.Errorf("executing state fork in epoch %d: %w", i, err)
}
log.Infof("forkNoPowerEPS state: %s", pstate)
}
}