File tree Expand file tree Collapse file tree
clients/tfchain-client-go Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -350,6 +350,13 @@ type TwinAdminRemoved struct {
350350 Topics []types.Hash
351351}
352352
353+ type NodeV3OptOutMetadataUpdated struct {
354+ Phase types.Phase
355+ NodeID types.U32 `json:"node_id"`
356+ Metadata types.OptionBytes `json:"metadata"`
357+ Topics []types.Hash
358+ }
359+
353360type EventSchedulerCallUnavailable struct {
354361 Phase types.Phase
355362 Task types.TaskAddress
@@ -489,6 +496,7 @@ type EventRecords struct {
489496 TfgridModule_NodeV3BillingOptedOut []NodeV3BillingOptedOut //nolint:stylecheck,golint
490497 TfgridModule_TwinAdminAdded []TwinAdminAdded //nolint:stylecheck,golint
491498 TfgridModule_TwinAdminRemoved []TwinAdminRemoved //nolint:stylecheck,golint
499+ TfgridModule_NodeV3OptOutMetadataUpdated []NodeV3OptOutMetadataUpdated //nolint:stylecheck,golint
492500
493501 // burn module events
494502 BurningModule_BurnTransactionCreated []BurnTransactionCreated //nolint:stylecheck,golint
Original file line number Diff line number Diff line change @@ -257,6 +257,8 @@ var tfgridModuleErrors = []string{
257257 "AlreadyTwinAdmin" ,
258258 "NotTwinAdmin" ,
259259 "TwinAdminListFull" ,
260+ "NodeNotOptedOutOfV3Billing" ,
261+ "NodeV3OptOutMetadataTooLong" ,
260262}
261263
262264// https://github.com/threefoldtech/tfchain/blob/development/substrate-node/pallets/pallet-tft-bridge/src/lib.rs#L152
You can’t perform that action at this time.
0 commit comments