lotus/chain/actors/builtin/account/v1.go

31 lines
598 B
Go
Raw Normal View History

2020-09-19 03:46:03 +00:00
package account
import (
"github.com/filecoin-project/go-address"
"github.com/ipfs/go-cid"
2020-09-19 03:46:03 +00:00
"github.com/filecoin-project/lotus/chain/actors/adt"
account1 "github.com/filecoin-project/specs-actors/v2/actors/builtin/account"
2020-09-19 03:46:03 +00:00
)
var _ State = (*state1)(nil)
func load1(store adt.Store, root cid.Cid) (State, error) {
out := state1{store: store}
err := store.Get(store.Context(), root, &out)
if err != nil {
return nil, err
}
return &out, nil
}
2020-09-19 03:46:03 +00:00
type state1 struct {
account1.State
2020-09-19 03:46:03 +00:00
store adt.Store
}
func (s *state1) PubkeyAddress() (address.Address, error) {
return s.Address, nil
}