1
0
mirror of https://github.com/oceanprotocol/react.git synced 2024-12-23 01:29:49 +01:00

Merge pull request #158 from oceanprotocol/feature/add_more_sleeps

add sleeps
This commit is contained in:
Matthias Kretschmann 2020-10-21 17:26:25 +02:00 committed by GitHub
commit 77e6a817b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -11,6 +11,7 @@ import {
getBuyDTFeedback,
getSellDTFeedback
} from './utils'
import { sleep } from 'utils'
interface UsePricing {
dtSymbol?: string
@ -228,6 +229,7 @@ function usePricing(ddo: DDO): UsePricing {
: await ocean.fixedRateExchange
.create(dataToken, `${price}`, accountId)
.next((step: number) => setStep(step, 'exchange'))
await sleep(20000)
return tx
} catch (error) {
setPricingError(error.message)

View File

@ -141,7 +141,7 @@ function usePublish(): UsePublish {
)
.next(setStep)
Logger.log('ddo created', ddo)
await sleep(15000)
await sleep(20000)
setStep(7)
return ddo
} catch (error) {