-
Notifications
You must be signed in to change notification settings - Fork 294
chore: parallellize keychain and queryPromise #6136
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
base: master
Are you sure you want to change the base?
Conversation
e0befb2
to
7baae82
Compare
8ecb7ea
to
bbb3faa
Compare
c682e7c
to
2ba5ea3
Compare
87c70b9
to
c829563
Compare
Ticket: CAAS-7
4bd8ccb
to
037ee71
Compare
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.
LGTM
} | ||
try { | ||
await ethWallet.sendMany({ ...sendManyParamsCorrectPassPhrase }); | ||
} catch (e) { | ||
e.message.should.not.equal(errorMessage); | ||
e.message.should.equal(errorMessage); |
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 did we change this test?
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.
After making validation and prebuildQuery parallel, it would give a consistent error message unable to decrypt keychain with the given wallet passphrase
. This test explicitly checked for error message to be different
Ticket: CAAS-7
prebuildAndSignTransaction
function to improve/sendcoins
endpoint performance