oceanprotocol / ocean-cli

4 stars 5 forks source link

Missing algorithm meta when starting compute job #57

Closed paulo-ocean closed 2 months ago

paulo-ocean commented 2 months ago

Missing algo meta

const algo: ComputeAlgorithm = {
            documentId: algoDdo.id,
            serviceId: algoDdo.services[0].id
        };

// should be:

const algo: ComputeAlgorithm = {
            documentId: algoDdo.id,
            serviceId: algoDdo.services[0].id,
            meta: algoDdo.metadata.algorithm
        };