19 lines
363 B
Go
19 lines
363 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/actors/builtin/account"
|
|
)
|
|
|
|
var _ State = (*state0)(nil)
|
|
|
|
type state0 struct {
|
|
account.State
|
|
store adt.Store
|
|
}
|
|
|
|
func (s *state0) PubkeyAddress() (address.Address, error) {
|
|
return s.Address, nil
|
|
}
|