-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
52 changed files
with
2,384 additions
and
72 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
package account | ||
|
||
import ( | ||
"github.com/filecoin-project/go-address" | ||
"github.com/ipfs/go-cid" | ||
|
||
"github.com/filecoin-project/lotus/chain/actors/adt" | ||
|
||
account8 "github.com/filecoin-project/specs-actors/v8/actors/builtin/account" | ||
) | ||
|
||
var _ State = (*state8)(nil) | ||
|
||
func load8(store adt.Store, root cid.Cid) (State, error) { | ||
out := state8{store: store} | ||
err := store.Get(store.Context(), root, &out) | ||
if err != nil { | ||
return nil, err | ||
} | ||
return &out, nil | ||
} | ||
|
||
func make8(store adt.Store, addr address.Address) (State, error) { | ||
out := state8{store: store} | ||
out.State = account8.State{Address: addr} | ||
return &out, nil | ||
} | ||
|
||
type state8 struct { | ||
account8.State | ||
store adt.Store | ||
} | ||
|
||
func (s *state8) PubkeyAddress() (address.Address, error) { | ||
return s.Address, nil | ||
} | ||
|
||
func (s *state8) GetState() interface{} { | ||
return &s.State | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
package cron | ||
|
||
import ( | ||
"github.com/ipfs/go-cid" | ||
|
||
"github.com/filecoin-project/lotus/chain/actors/adt" | ||
|
||
cron8 "github.com/filecoin-project/specs-actors/v8/actors/builtin/cron" | ||
) | ||
|
||
var _ State = (*state8)(nil) | ||
|
||
func load8(store adt.Store, root cid.Cid) (State, error) { | ||
out := state8{store: store} | ||
err := store.Get(store.Context(), root, &out) | ||
if err != nil { | ||
return nil, err | ||
} | ||
return &out, nil | ||
} | ||
|
||
func make8(store adt.Store) (State, error) { | ||
out := state8{store: store} | ||
out.State = *cron8.ConstructState(cron8.BuiltInEntries()) | ||
return &out, nil | ||
} | ||
|
||
type state8 struct { | ||
cron8.State | ||
store adt.Store | ||
} | ||
|
||
func (s *state8) GetState() interface{} { | ||
return &s.State | ||
} |
Oops, something went wrong.