-
Notifications
You must be signed in to change notification settings - Fork 23
new parameters in data transfer file #1471
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
new parameters in data transfer file #1471
Conversation
| ? accountObj.recipientId.split('@') | ||
| : myAccount.recipientId.split('@'); | ||
| const accountId = accountObj ? accountObj.id : myAccount.id; | ||
| const signature = accountObj |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
accountObj && accountObj.signature ? accountObj.signature : myAccount.signature
| checkDataStatus = async () => { | ||
| const { status, body } = await getDataReady(myAccount.recipientId); | ||
| if (status === DATA_READY_STATUS) { | ||
| //here must exist a clear timeout |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why don't you added?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not entirely sure, i will check again
| : myAccount.signature | ||
| : myAccount.signature; | ||
| const hasCriptextFooter = accountObj | ||
| ? accountObj.signFooter !== undefined |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same as above
84bf39e to
d06c900
Compare
d06c900 to
2dae608
Compare
new parameters in data transfer file