removed dead code from builtin actor template init funcs
This commit is contained in:
parent
19593eda3b
commit
54f312139f
@ -21,12 +21,6 @@ func init() {
|
|||||||
builtin.RegisterActorState(builtin{{.}}.AccountActorCodeID, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
builtin.RegisterActorState(builtin{{.}}.AccountActorCodeID, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
||||||
return load{{.}}(store, root)
|
return load{{.}}(store, root)
|
||||||
})
|
})
|
||||||
|
|
||||||
if c, ok := actors.GetActorCodeID(actors.Version{{.}}, "account"); ok {
|
|
||||||
builtin.RegisterActorState(c, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
|
||||||
return load{{.}}(store, root)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
{{end}}}
|
{{end}}}
|
||||||
|
|
||||||
var Methods = builtin4.MethodsAccount
|
var Methods = builtin4.MethodsAccount
|
||||||
|
@ -23,12 +23,6 @@ func init() {
|
|||||||
builtin.RegisterActorState(builtin{{.}}.InitActorCodeID, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
builtin.RegisterActorState(builtin{{.}}.InitActorCodeID, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
||||||
return load{{.}}(store, root)
|
return load{{.}}(store, root)
|
||||||
})
|
})
|
||||||
|
|
||||||
if c, ok := actors.GetActorCodeID(actors.Version{{.}}, "init"); ok {
|
|
||||||
builtin.RegisterActorState(c, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
|
||||||
return load{{.}}(store, root)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
{{end}}}
|
{{end}}}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
@ -30,12 +30,6 @@ func init() {
|
|||||||
builtin.RegisterActorState(builtin{{.}}.StorageMarketActorCodeID, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
builtin.RegisterActorState(builtin{{.}}.StorageMarketActorCodeID, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
||||||
return load{{.}}(store, root)
|
return load{{.}}(store, root)
|
||||||
})
|
})
|
||||||
|
|
||||||
if c, ok := actors.GetActorCodeID(actors.Version{{.}}, "storagemarket"); ok {
|
|
||||||
builtin.RegisterActorState(c, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
|
||||||
return load{{.}}(store, root)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
{{end}}}
|
{{end}}}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
@ -34,12 +34,6 @@ func init() {
|
|||||||
builtin.RegisterActorState(builtin{{.}}.StorageMinerActorCodeID, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
builtin.RegisterActorState(builtin{{.}}.StorageMinerActorCodeID, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
||||||
return load{{.}}(store, root)
|
return load{{.}}(store, root)
|
||||||
})
|
})
|
||||||
|
|
||||||
if c, ok := actors.GetActorCodeID(actors.Version{{.}}, "storageminer"); ok {
|
|
||||||
builtin.RegisterActorState(c, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
|
||||||
return load{{.}}(store, root)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
{{end}}
|
{{end}}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -29,12 +29,6 @@ func init() {
|
|||||||
builtin.RegisterActorState(builtin{{.}}.MultisigActorCodeID, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
builtin.RegisterActorState(builtin{{.}}.MultisigActorCodeID, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
||||||
return load{{.}}(store, root)
|
return load{{.}}(store, root)
|
||||||
})
|
})
|
||||||
|
|
||||||
if c, ok := actors.GetActorCodeID(actors.Version{{.}}, "multisig"); ok {
|
|
||||||
builtin.RegisterActorState(c, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
|
||||||
return load{{.}}(store, root)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
{{end}}}
|
{{end}}}
|
||||||
|
|
||||||
func Load(store adt.Store, act *types.Actor) (State, error) {
|
func Load(store adt.Store, act *types.Actor) (State, error) {
|
||||||
|
@ -29,12 +29,6 @@ func init() {
|
|||||||
builtin.RegisterActorState(builtin{{.}}.PaymentChannelActorCodeID, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
builtin.RegisterActorState(builtin{{.}}.PaymentChannelActorCodeID, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
||||||
return load{{.}}(store, root)
|
return load{{.}}(store, root)
|
||||||
})
|
})
|
||||||
|
|
||||||
if c, ok := actors.GetActorCodeID(actors.Version{{.}}, "paymentchannel"); ok {
|
|
||||||
builtin.RegisterActorState(c, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
|
||||||
return load{{.}}(store, root)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
{{end}}}
|
{{end}}}
|
||||||
|
|
||||||
// Load returns an abstract copy of payment channel state, irregardless of actor version
|
// Load returns an abstract copy of payment channel state, irregardless of actor version
|
||||||
|
@ -24,12 +24,6 @@ func init() {
|
|||||||
builtin.RegisterActorState(builtin{{.}}.StoragePowerActorCodeID, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
builtin.RegisterActorState(builtin{{.}}.StoragePowerActorCodeID, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
||||||
return load{{.}}(store, root)
|
return load{{.}}(store, root)
|
||||||
})
|
})
|
||||||
|
|
||||||
if c, ok := actors.GetActorCodeID(actors.Version{{.}}, "storagepower"); ok {
|
|
||||||
builtin.RegisterActorState(c, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
|
||||||
return load{{.}}(store, root)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
{{end}}}
|
{{end}}}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
@ -22,12 +22,6 @@ func init() {
|
|||||||
builtin.RegisterActorState(builtin{{.}}.RewardActorCodeID, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
builtin.RegisterActorState(builtin{{.}}.RewardActorCodeID, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
||||||
return load{{.}}(store, root)
|
return load{{.}}(store, root)
|
||||||
})
|
})
|
||||||
|
|
||||||
if c, ok := actors.GetActorCodeID(actors.Version{{.}}, "reward"); ok {
|
|
||||||
builtin.RegisterActorState(c, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
|
||||||
return load{{.}}(store, root)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
{{end}}}
|
{{end}}}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
@ -24,12 +24,6 @@ func init() {
|
|||||||
builtin.RegisterActorState(builtin{{.}}.VerifiedRegistryActorCodeID, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
builtin.RegisterActorState(builtin{{.}}.VerifiedRegistryActorCodeID, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
||||||
return load{{.}}(store, root)
|
return load{{.}}(store, root)
|
||||||
})
|
})
|
||||||
|
|
||||||
if c, ok := actors.GetActorCodeID(actors.Version{{.}}, "verifiedregistry"); ok {
|
|
||||||
builtin.RegisterActorState(c, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
|
||||||
return load{{.}}(store, root)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
{{end}}
|
{{end}}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user