2021-11-04 15:59:29 +00:00
|
|
|
package account
|
|
|
|
|
|
|
|
import (
|
2022-11-08 04:55:56 +00:00
|
|
|
"github.com/ipfs/go-cid"
|
2022-06-14 15:00:51 +00:00
|
|
|
|
2022-11-08 05:53:13 +00:00
|
|
|
"github.com/filecoin-project/go-address"
|
2022-11-08 04:55:56 +00:00
|
|
|
account7 "github.com/filecoin-project/specs-actors/v7/actors/builtin/account"
|
2022-11-08 05:53:13 +00:00
|
|
|
|
|
|
|
"github.com/filecoin-project/lotus/chain/actors/adt"
|
2021-11-04 15:59:29 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var _ State = (*state7)(nil)
|
|
|
|
|
|
|
|
func load7(store adt.Store, root cid.Cid) (State, error) {
|
|
|
|
out := state7{store: store}
|
|
|
|
err := store.Get(store.Context(), root, &out)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &out, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func make7(store adt.Store, addr address.Address) (State, error) {
|
|
|
|
out := state7{store: store}
|
|
|
|
out.State = account7.State{Address: addr}
|
|
|
|
return &out, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type state7 struct {
|
|
|
|
account7.State
|
|
|
|
store adt.Store
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *state7) PubkeyAddress() (address.Address, error) {
|
|
|
|
return s.Address, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *state7) GetState() interface{} {
|
|
|
|
return &s.State
|
|
|
|
}
|