File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -23,8 +23,6 @@ type Actor struct {
23
23
StateRoot string `pg:",pk,notnull"`
24
24
// Human-readable identifier for the type of the actor.
25
25
Code string `pg:",notnull"`
26
- // CID identifier for the type of the actor.
27
- CodeCID string `pg:",notnull"`
28
26
// CID of the root of the state tree for the actor.
29
27
Head string `pg:",notnull"`
30
28
// Balance of Actor in attoFIL.
@@ -33,6 +31,8 @@ type Actor struct {
33
31
Nonce uint64 `pg:",use_zero"`
34
32
// Top level of state data as json.
35
33
State string `pg:",type:jsonb"`
34
+ // CID identifier for the type of the actor.
35
+ CodeCID string `pg:",notnull"`
36
36
}
37
37
38
38
func (a * Actor ) Persist (ctx context.Context , s model.StorageBatch , version model.Version ) error {
You can’t perform that action at this time.
0 commit comments