Skip to content

Commit 5a538a0

Browse files
committed
fix struct field alignment in ConfidentialModule
1 parent 830c81f commit 5a538a0

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

core/services/workflows/v2/confidential_module.go

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -67,16 +67,16 @@ type BinaryURLResolver func(ctx context.Context, workflowID string) (string, err
6767
// Instead of running WASM locally, it delegates execution to the
6868
// confidential-workflows capability via the CapabilitiesRegistry.
6969
type ConfidentialModule struct {
70-
capRegistry core.CapabilitiesRegistry
71-
binaryURL string
72-
binaryHash []byte
73-
workflowID string
74-
workflowOwner string
75-
workflowName string
76-
workflowTag string
77-
vaultDonSecrets []SecretIdentifier
78-
binaryURLResolver BinaryURLResolver
79-
lggr logger.Logger
70+
capRegistry core.CapabilitiesRegistry
71+
binaryURL string
72+
binaryHash []byte
73+
workflowID string
74+
workflowOwner string
75+
workflowName string
76+
workflowTag string
77+
vaultDonSecrets []SecretIdentifier
78+
binaryURLResolver BinaryURLResolver
79+
lggr logger.Logger
8080
}
8181

8282
var _ host.ModuleV2 = (*ConfidentialModule)(nil)

0 commit comments

Comments
 (0)