lotus/chain/actors/builtin/account/v0.go

19 lines
363 B
Go
Raw Normal View History

2020-09-18 21:20:53 +00:00
package account
import (
"github.com/filecoin-project/go-address"
"github.com/filecoin-project/lotus/chain/actors/adt"
"github.com/filecoin-project/specs-actors/actors/builtin/account"
)
var _ State = (*state0)(nil)
type state0 struct {
2020-09-18 21:20:53 +00:00
account.State
store adt.Store
}
func (s *state0) PubkeyAddress() (address.Address, error) {
2020-09-18 21:20:53 +00:00
return s.Address, nil
}