lotus/chain/actors/builtin/account/v1.go
2020-09-25 12:49:39 -07:00

19 lines
366 B
Go

package account
import (
"github.com/filecoin-project/go-address"
"github.com/filecoin-project/lotus/chain/actors/adt"
"github.com/filecoin-project/specs-actors/v2/actors/builtin/account"
)
var _ State = (*state1)(nil)
type state1 struct {
account.State
store adt.Store
}
func (s *state1) PubkeyAddress() (address.Address, error) {
return s.Address, nil
}