File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -244,10 +244,11 @@ class BaseEventProcessor {
244244 `Decrypting DDO from network: ${ this . networkId } created by: ${ eventCreator } encrypted by: ${ decryptorURL } `
245245 )
246246
247- const { nonce : nonceDB } = await getDatabase ( )
248- const nonceHandlerResponse = await getNonce ( nonceDB , eventCreator )
249- const nonce = await streamToString ( nonceHandlerResponse . stream as Readable )
250- const incrementedNonce = ( Number ( nonce ) + 1 ) . toString ( )
247+ // const { nonce: nonceDB } = await getDatabase()
248+ // const nonceHandlerResponse = await getNonce(nonceDB, eventCreator)
249+ // const nonce = await streamToString(nonceHandlerResponse.stream as Readable)
250+ // const incrementedNonce = (Number(nonce) + 1).toString()
251+ const incrementedNonce = Date . now ( )
251252
252253 const config = await getConfiguration ( )
253254 const { keys } = config
You can’t perform that action at this time.
0 commit comments