2020-09-19 03:46:03 +00:00
|
|
|
package account
|
|
|
|
|
|
|
|
import (
|
2022-11-16 22:32:59 +00:00
|
|
|
"fmt"
|
|
|
|
|
2020-09-24 00:40:29 +00:00
|
|
|
"github.com/ipfs/go-cid"
|
|
|
|
|
2022-06-14 15:00:51 +00:00
|
|
|
"github.com/filecoin-project/go-address"
|
2022-11-16 22:32:59 +00:00
|
|
|
actorstypes "github.com/filecoin-project/go-state-types/actors"
|
2022-12-13 23:02:34 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/manifest"
|
2020-09-28 20:13:18 +00:00
|
|
|
account2 "github.com/filecoin-project/specs-actors/v2/actors/builtin/account"
|
2022-06-14 15:00:51 +00:00
|
|
|
|
2022-11-16 22:32:59 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/actors"
|
2022-06-14 15:00:51 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/actors/adt"
|
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
|
|
|
|
}
|
|
|
|
|
2021-05-15 01:11:23 +00:00
|
|
|
func make2(store adt.Store, addr address.Address) (State, error) {
|
|
|
|
out := state2{store: store}
|
|
|
|
out.State = account2.State{Address: addr}
|
|
|
|
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
|
|
|
|
}
|
2021-05-15 01:11:23 +00:00
|
|
|
|
|
|
|
func (s *state2) GetState() interface{} {
|
|
|
|
return &s.State
|
|
|
|
}
|
2022-11-16 22:32:59 +00:00
|
|
|
|
|
|
|
func (s *state2) ActorKey() string {
|
2022-12-13 23:02:34 +00:00
|
|
|
return manifest.AccountKey
|
2022-11-16 22:32:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *state2) ActorVersion() actorstypes.Version {
|
|
|
|
return actorstypes.Version2
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *state2) Code() cid.Cid {
|
|
|
|
code, ok := actors.GetActorCodeID(s.ActorVersion(), s.ActorKey())
|
|
|
|
if !ok {
|
|
|
|
panic(fmt.Errorf("didn't find actor %v code id for actor version %d", s.ActorKey(), s.ActorVersion()))
|
|
|
|
}
|
|
|
|
|
|
|
|
return code
|
|
|
|
}
|