2020-09-18 21:20:53 +00:00
|
|
|
package account
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/filecoin-project/go-address"
|
2020-09-24 00:40:29 +00:00
|
|
|
"github.com/ipfs/go-cid"
|
|
|
|
|
2020-09-18 21:20:53 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/actors/adt"
|
2020-09-24 00:40:29 +00:00
|
|
|
|
|
|
|
account0 "github.com/filecoin-project/specs-actors/actors/builtin/account"
|
2020-09-18 21:20:53 +00:00
|
|
|
)
|
|
|
|
|
2020-09-21 06:19:32 +00:00
|
|
|
var _ State = (*state0)(nil)
|
|
|
|
|
2020-09-24 00:40:29 +00:00
|
|
|
func load0(store adt.Store, root cid.Cid) (State, error) {
|
|
|
|
out := state0{store: store}
|
|
|
|
err := store.Get(store.Context(), root, &out)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &out, nil
|
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
type state0 struct {
|
2020-09-24 00:40:29 +00:00
|
|
|
account0.State
|
2020-09-18 21:20:53 +00:00
|
|
|
store adt.Store
|
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (s *state0) PubkeyAddress() (address.Address, error) {
|
2020-09-18 21:20:53 +00:00
|
|
|
return s.Address, nil
|
|
|
|
}
|