-
Notifications
You must be signed in to change notification settings - Fork 75
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
[ETCM-126] add eth_pendingTransactions #726
Conversation
I think it works the same as |
…ove qa_getPendingTransactions
23e77bc
to
5f00f21
Compare
Signed-off-by: lemastero <piotr.paradzinski@iohk.io>
…ctions Signed-off-by: lemastero <piotr.paradzinski@iohk.io>
fea3bd8
to
7d47ca3
Compare
response should haveResult(JArray(List())) | ||
} | ||
|
||
it should "mempool is empty" in new TestSetup { |
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.
Mempool has transactions here
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.
Good catch, thank you it gave me some good hint on why tests failed after porting from qa scope to eth 👍
src/test/scala/io/iohk/ethereum/jsonrpc/JsonRpcControllerSpec.scala
Outdated
Show resolved
Hide resolved
65c8b04
to
712a173
Compare
Done. |
@@ -961,6 +961,43 @@ | |||
"settingFollowRedirects": "global", | |||
"_type": "request" | |||
}, | |||
{ |
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.
Please remove qa_getPendingTransactions
from insomnia also
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.
And remember to notify QA once this gets merged :)
5b14e23
to
2d8c97e
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!
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!
Description
Add support for Ethereum JSON-RPC endpoint eth_pendingTransactions
Proposed Solution
Important Changes Introduced
Testing