1
0
mirror of https://github.com/oceanprotocol/react.git synced 2025-02-14 21:10:38 +01:00

add sleeps

This commit is contained in:
alexcos20 2020-10-21 08:21:26 -07:00
parent 750f1fb48b
commit a73b0d888e
2 changed files with 3 additions and 1 deletions

View File

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

View File

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