This repository has been archived by the owner on Aug 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
EIP 196, 197, 198 #24
Merged
Merged
Changes from 4 commits
Commits
Show all changes
41 commits
Select commit
Hold shift + click to select a range
6e5dc6a
implement bn256 precompiles
noot 4d1aa1e
Merge branch 'development' of github.com:eth-classic/go-ethereum into…
noot 91467d7
implement bigModExp
noot 0da961e
add comments and test
noot 85d37d6
Merge branch 'development' of github.com:eth-classic/go-ethereum into…
noot e22f273
Merge branch 'development' into elizabeth/precompiles
noot 04c1464
Merge branch 'development' into elizabeth/precompiles
noot 8480d31
run precompile tests
noot 4822719
skip failing tests for now
noot 82ae34a
add distinction between atlantis and pre-atlantis precompiles
noot ab8c308
refactor precompiles to separate pre and post atlantis
noot e2f366d
Merge branch 'development' into elizabeth/precompiles
noot 4524150
implement bn256 precompiles
noot 0659d38
implement bigModExp
noot 0d88004
add comments and test
noot 4493f9b
run precompile tests
noot 660c614
skip failing tests for now
noot aeda162
add distinction between atlantis and pre-atlantis precompiles
noot 672f1f4
refactor precompiles to separate pre and post atlantis
noot ad3f211
Merge branch 'elizabeth/precompiles' of github.com:eth-classic/go-eth…
noot 7545a93
fix conflicts
noot 5118de0
merge with development
noot 15c031c
fix ecrecover edge case
noot b29c1a2
implement bn256 precompiles
noot ef98ce4
implement bigModExp
noot f8f0541
add comments and test
noot 4edbe8f
run precompile tests
noot c61bb9d
skip failing tests for now
noot 28a3b9f
add distinction between atlantis and pre-atlantis precompiles
noot 2827568
refactor precompiles to separate pre and post atlantis
noot e47f273
implement bn256 precompiles
noot 888b3cb
implement bigModExp
noot fb89e4c
add comments and test
noot 37f402b
run precompile tests
noot e4a4329
fix ecrecover edge case
noot 55eb882
Merge branch 'elizabeth/precompiles' of github.com:eth-classic/go-eth…
noot 998acfe
update go.mod
noot 3ea1bc4
remove skip for previously failing tests
noot 57d05e6
attempt to fix go.mod
noot 27955de
attempt to fix go.mod
noot 6863e1c
fix go.mod termiu version
noot 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 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 |
---|---|---|
|
@@ -33,3 +33,5 @@ coverage.txt | |
.vscode | ||
|
||
accounts/testdata/keystore/accounts.db | ||
*sublime-project | ||
*sublime-workspace | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package common | ||
|
||
const ( | ||
MaxInt8 = 1<<7 - 1 | ||
MinInt8 = -1 << 7 | ||
MaxInt16 = 1<<15 - 1 | ||
MinInt16 = -1 << 15 | ||
MaxInt32 = 1<<31 - 1 | ||
MinInt32 = -1 << 31 | ||
MaxInt64 = 1<<63 - 1 | ||
MinInt64 = -1 << 63 | ||
MaxUint8 = 1<<8 - 1 | ||
MaxUint16 = 1<<16 - 1 | ||
MaxUint32 = 1<<32 - 1 | ||
MaxUint64 = 1<<64 - 1 | ||
) |
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
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
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
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.
ew