-
Notifications
You must be signed in to change notification settings - Fork 75
Add testmode #426
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
Merged
Merged
Add testmode #426
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
a5930d7
wip - testmode
d9f1b5c
Cleanup
a5d0cc9
Fix scalastyle
c6a172f
Add iele_ transaction endpoints
ce3d726
Cleanup
3448160
Rename 'functionName' param to 'function'; fix chain config msg
34018ab
Fix
943fd3b
Fix
9e8b4de
Fix test
786f0a7
Send proper config based on vm type
a8c3a99
Update iele call response
99d0742
Send config on every request; fix rlp decoding
69baedd
Kevm config in call ctx msg
3a3195c
Merge remote-tracking branch 'origin/feature/consensus_as_a_service_E…
04958f7
Merge remote-tracking branch 'origin/phase/iele_testnet' into feature…
d8f62df
wip
db7776d
wip
eb18f82
Cleanup
3221837
Use block generator from consensus in TestService
dfbc9ab
Sending to address 0x0 not allowed only in testmode
0d56e6d
Update config
2e2be41
Fix compile in snappy
e43749a
Fix ethCompatibleStorage param in blockPreparator; remove default value
8814879
Better config doc
78e5228
Upgrade sbt-verify to 0.4.1
fc4ffef
Wrap socket close in Try
e8d2fb7
Fix it test
493da55
Fix ets
0b6d237
Add thead pool note
380e8a0
Merge remote-tracking branch 'origin/phase/iele_testnet' into feature…
fe62c56
Fix
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
package io.iohk.ethereum | ||
|
||
import io.iohk.ethereum.nodebuilder.StdNode | ||
import io.iohk.ethereum.nodebuilder.{StdNode, TestNode} | ||
import io.iohk.ethereum.utils.Config | ||
|
||
object Mantis { | ||
def main(args: Array[String]): Unit = { | ||
val node = new StdNode | ||
val node = | ||
if (Config.testmode) new TestNode | ||
else new StdNode | ||
|
||
node.start() | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
based on our discussion on slack, weren't we planning for our near-term solution to be to make IeleConfig also be passed on every CallContext?
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.
@dwightguth done