1bf3b4989d
`sed -i 's/\bv0\(\w\)\(\w*\)/\L\1\E\20/g' **/*.go`
17 lines
333 B
Go
17 lines
333 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"
|
|
)
|
|
|
|
type state0 struct {
|
|
account.State
|
|
store adt.Store
|
|
}
|
|
|
|
func (s *state0) PubkeyAddress() (address.Address, error) {
|
|
return s.Address, nil
|
|
}
|