1
0
mirror of https://github.com/oceanprotocol-archive/squid-js.git synced 2024-02-02 15:31:51 +01:00

remove logs

This commit is contained in:
Sebastian Gerske 2018-11-22 11:39:20 +01:00
parent 42959d8fc7
commit 2d41535bab

View File

@ -136,8 +136,6 @@ export default class ServiceAgreementTemplate extends OceanBase {
mappedDependencyTimeoutFlags.push(dependencyTimeoutFlags[i] ? 1 : 0)
})
Logger.log("========================")
if (mappedDependencies.length !== mappedDependencyTimeoutFlags.length) {
throw new Error("Deps and timeouts need the same length")
}
@ -155,10 +153,6 @@ export default class ServiceAgreementTemplate extends OceanBase {
compressedDependencyValue |= t * 2 ** (offset + 1) // the timeout bit
})
Logger.log(compressedDependencyValue)
Logger.log("========================")
return compressedDependencyValue
}