mirror of
https://github.com/oceanprotocol/react-tutorial
synced 2024-11-22 01:36:58 +01:00
fixes
This commit is contained in:
parent
79c66240f6
commit
af3e96c958
@ -70,7 +70,6 @@ export default function Compute({ ocean, web3 }) {
|
|||||||
secretStoreUri: ocean.config.secretStoreUri
|
secretStoreUri: ocean.config.secretStoreUri
|
||||||
}
|
}
|
||||||
console.log(ComputeOutput)
|
console.log(ComputeOutput)
|
||||||
|
|
||||||
// order the compute service
|
// order the compute service
|
||||||
const agreement = await ocean.compute.order(accounts[0], ddoAssetId)
|
const agreement = await ocean.compute.order(accounts[0], ddoAssetId)
|
||||||
setAgreementId(agreement)
|
setAgreementId(agreement)
|
||||||
@ -114,8 +113,7 @@ export default function Compute({ ocean, web3 }) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function showDivAlgo() {
|
async function showDivAlgo() {
|
||||||
const style = isAlgoInputVisible ? false : true
|
setIsAlgoInputVisible(isAlgoInputVisible ? false : true)
|
||||||
setIsAlgoInputVisible(style)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async function updateRawAlgoCode(event) {
|
async function updateRawAlgoCode(event) {
|
||||||
@ -126,10 +124,10 @@ export default function Compute({ ocean, web3 }) {
|
|||||||
setDdoAssetId(event.target.value)
|
setDdoAssetId(event.target.value)
|
||||||
}
|
}
|
||||||
async function handlePublishOutputState(event) {
|
async function handlePublishOutputState(event) {
|
||||||
setPublishOutputState(!!event.target.checked)
|
setPublishOutputState(event.target.checked)
|
||||||
}
|
}
|
||||||
async function handlePublishLogState(event) {
|
async function handlePublishLogState(event) {
|
||||||
setPublishLogState(!!event.target.checked)
|
setPublishLogState(event.target.checked)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!web3) {
|
if (!web3) {
|
||||||
|
Loading…
Reference in New Issue
Block a user