This repository has been archived by the owner on May 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 344
Implementing RETURNDATASIZE and RETURNDATACOPY #755
Closed
smblucker
wants to merge
31
commits into
hyperledger-archives:new-opcodes2
from
smblucker:retdatasize-retdatacopy-issue705
Closed
Implementing RETURNDATASIZE and RETURNDATACOPY #755
smblucker
wants to merge
31
commits into
hyperledger-archives:new-opcodes2
from
smblucker:retdatasize-retdatacopy-issue705
Conversation
This file contains 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
Signed-off-by: Silas Davis <[email protected]>
Signed-off-by: Silas Davis <[email protected]>
Signed-off-by: smblucker <[email protected]>
Making substantive and cosmetic changes to api.md
Ensure storing zero value removes the key rather than panics
Add file and json logging instructions.
detecting it. Make it possible to provide base genesis specs. Signed-off-by: Silas Davis <[email protected]>
text file (default json) Signed-off-by: Silas Davis <[email protected]>
Network spec
startup. Signed-off-by: Silas Davis <[email protected]>
Fix test issues, and reorganise CLI UX. Read validator address on startup.
Signed-off-by: Silas Davis <[email protected]>
Update project history for 0.18.0 release, add moniker flag
Signed-off-by: smblucker <[email protected]>
Signed-off-by: Silas Davis <[email protected]>
Signed-off-by: smblucker <[email protected]>
Flush events after hashing to fix timing issue in test
Editing grammar, spelling and style in readme
Merge develop to master for release
Implementing INVALID opcode
Signed-off-by: Silas Davis <[email protected]>
rather waiting for block (which may or may not contain tx) Signed-off-by: Silas Davis <[email protected]>
Exposed by timeouts in waitForEvent helper Signed-off-by: Silas Davis <[email protected]>
Use sed for indentation to not interpret shell characters
Signed-off-by: Silas Davis <[email protected]>
Introduce InputAccount on param to simplify JS
Increase reap threshold to 20 seconds Signed-off-by: Silas Davis <[email protected]>
Cleanup some subscription code on V0
Signed-off-by: smblucker <[email protected]>
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
These changes implement the RETURNDATASIZE and RETURNDATACOPY opcodes as described here:
https://github.com/ethereum/EIPs/blob/dde2fe59532290f285a3ae79bd7347f0a7b69d6d/EIPS/eip-211.md
This implementation attempts to resolve issue here:
#705