2020-09-19 03:46:03 +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-19 03:46:03 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/actors/adt"
|
2020-09-24 00:40:29 +00:00
|
|
|
|
2020-09-28 20:13:18 +00:00
|
|
|
account2 "github.com/filecoin-project/specs-actors/v2/actors/builtin/account"
|
2020-09-19 03:46:03 +00:00
|
|
|
)
|
|
|
|
|
2020-09-28 20:13:18 +00:00
|
|
|
var _ State = (*state2)(nil)
|
2020-09-19 03:46:03 +00:00
|
|
|
|
2020-09-28 20:13:18 +00:00
|
|
|
func load2(store adt.Store, root cid.Cid) (State, error) {
|
|
|
|
out := state2{store: store}
|
2020-09-24 00:40:29 +00:00
|
|
|
err := store.Get(store.Context(), root, &out)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &out, nil
|
|
|
|
}
|
|
|
|
|
2020-09-28 20:13:18 +00:00
|
|
|
type state2 struct {
|
|
|
|
account2.State
|
2020-09-19 03:46:03 +00:00
|
|
|
store adt.Store
|
|
|
|
}
|
|
|
|
|
2020-09-28 20:13:18 +00:00
|
|
|
func (s *state2) PubkeyAddress() (address.Address, error) {
|
2020-09-19 03:46:03 +00:00
|
|
|
return s.Address, nil
|
|
|
|
}
|