-
Notifications
You must be signed in to change notification settings - Fork 78
[ECTM-80] QA Service + mocked miner #670
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
Conversation
| @@ -0,0 +1,3 @@ | |||
| version = "2.3.0" | |||
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.
=)
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.
2.7.1 is the latest :)
| "org.bouncycastle" % "bcprov-jdk15on" % "1.59", | ||
| "com.typesafe.scala-logging" %% "scala-logging" % "3.9.0", | ||
| "org.typelevel" %% "mouse" % "0.18", | ||
| "org.typelevel" %% "mouse" % "0.23", |
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.
Maybe we could start adding new Dependencies following the approach we use in the other project. (like i started doing it here: https://github.com/input-output-hk/mantis/pull/668/files#diff-fdc3abdfd754eeb24090dbd90aeec2ceR77) WDYT?
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.
Yes, we should do that. I will do that in separate PR
| import io.iohk.ethereum.utils.ByteStringUtils | ||
| import scala.concurrent.duration._ | ||
|
|
||
| class MockedMiner( |
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.
👍
| import scala.concurrent.ExecutionContext | ||
| import scala.language.higherKinds | ||
|
|
||
| trait SpecBase extends TypeCheckedTripleEquals with DiagrammedAssertions with Matchers { self: AsyncTestSuite => |
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 update insomnia workspace (Yes we already have one =) ) |
135980a to
e6f714b
Compare
e6f714b to
802632a
Compare
mirkoAlic
left a comment
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!
| @@ -0,0 +1,3 @@ | |||
| version = "2.3.0" | |||
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.
2.7.1 is the latest :)
| "com.typesafe.scala-logging" %% "scala-logging" % "3.9.0", | ||
| "org.typelevel" %% "mouse" % "0.18", | ||
| "org.typelevel" %% "mouse" % "0.23", | ||
| "org.typelevel" %% "cats-core" % "2.0.0", |
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.
I'm pretty sure all of them can be bumped up a bit. IIRC Cats - 2.2, Monix 3.2, etc.
| # Available choices are: eth, web3, net, personal, test, daedalus, iele | ||
| apis = "eth,web3,net,personal,daedalus,debug" | ||
| # Available choices are: eth, web3, net, personal, test, daedalus, iele, qa | ||
| apis = "eth,web3,net,personal,daedalus,debug,qa" |
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.
shouldn't section about available consensus/pow algorithms be updated as well?
shouldn't config in universal be updated for sake of documentation?
Description