2021-01-16 04:14:20 +00:00
|
|
|
package account
|
|
|
|
|
|
|
|
import (
|
2022-11-16 22:32:59 +00:00
|
|
|
"fmt"
|
|
|
|
|
2021-01-16 04:14:20 +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"
|
2021-01-16 04:14:20 +00:00
|
|
|
account3 "github.com/filecoin-project/specs-actors/v3/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"
|
2021-01-16 04:14:20 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var _ State = (*state3)(nil)
|
|
|
|
|
|
|
|
func load3(store adt.Store, root cid.Cid) (State, error) {
|
|
|
|
out := state3{store: store}
|
|
|
|
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 make3(store adt.Store, addr address.Address) (State, error) {
|
|
|
|
out := state3{store: store}
|
|
|
|
out.State = account3.State{Address: addr}
|
|
|
|
return &out, nil
|
|
|
|
}
|
|
|
|
|
2021-01-16 04:14:20 +00:00
|
|
|
type state3 struct {
|
|
|
|
account3.State
|
|
|
|
store adt.Store
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *state3) PubkeyAddress() (address.Address, error) {
|
|
|
|
return s.Address, nil
|
|
|
|
}
|
2021-05-15 01:11:23 +00:00
|
|
|
|
|
|
|
func (s *state3) GetState() interface{} {
|
|
|
|
return &s.State
|
|
|
|
}
|
2022-11-16 22:32:59 +00:00
|
|
|
|
|
|
|
func (s *state3) ActorKey() string {
|
2022-12-13 23:02:34 +00:00
|
|
|
return manifest.AccountKey
|
2022-11-16 22:32:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *state3) ActorVersion() actorstypes.Version {
|
|
|
|
return actorstypes.Version3
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *state3) 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
|
|
|
|
}
|