forked from ethereum/go-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 9
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
New AA Work #5
Closed
Closed
New AA Work #5
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
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
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 |
---|---|---|
|
@@ -30,6 +30,7 @@ var activators = map[int]func(*JumpTable){ | |
1884: enable1884, | ||
1344: enable1344, | ||
2315: enable2315, | ||
2937: enable2937, | ||
} | ||
|
||
// EnableEIP enables the given EIP on the config. | ||
|
@@ -44,10 +45,13 @@ func EnableEIP(eipNum int, jt *JumpTable) error { | |
return nil | ||
} | ||
|
||
// ValidEip checks if an eip is in the activators table | ||
func ValidEip(eipNum int) bool { | ||
_, ok := activators[eipNum] | ||
return ok | ||
} | ||
|
||
// ActivateableEips returns the available activatble eips | ||
func ActivateableEips() []string { | ||
var nums []string | ||
for k := range activators { | ||
|
@@ -83,8 +87,20 @@ func opSelfBalance(pc *uint64, interpreter *EVMInterpreter, callContext *callCtx | |
return nil, nil | ||
} | ||
|
||
// enable2937 applies EIP-2937 (SET_INDESRUCTIBLE Opcode) | ||
// - Adds an opcode that prevents contract from calling SELFDESTRUCT (0xFF) | ||
func enable2937(jt *JumpTable) { | ||
// New opcode | ||
jt[SETINDESTRUCTIBLE] = &operation{ | ||
execute: opSetIndestructible, | ||
constantGas: GasQuickStep, | ||
minStack: minStack(0, 1), | ||
maxStack: maxStack(0, 1), | ||
} | ||
} | ||
|
||
// enable1344 applies EIP-1344 (ChainID Opcode) | ||
// - Adds an opcode that returns the current chain’s EIP-155 unique identifier | ||
// - Adds an opcode that returns the current chain's EIP-155 unique identifier | ||
func enable1344(jt *JumpTable) { | ||
// New opcode | ||
jt[CHAINID] = &operation{ | ||
|
@@ -95,10 +111,16 @@ func enable1344(jt *JumpTable) { | |
} | ||
} | ||
|
||
// opSetIndestructible implements forbidding a contract from calling SELFDESTRUCT | ||
func opSetIndestructible(pc *uint64, interpreter *EVMInterpreter, callContext *callCtx) ([]byte, error) { | ||
callContext.contract.Indestructible = true | ||
return nil, nil | ||
} | ||
|
||
// opChainID implements CHAINID opcode | ||
func opChainID(pc *uint64, interpreter *EVMInterpreter, callContext *callCtx) ([]byte, error) { | ||
chainId, _ := uint256.FromBig(interpreter.evm.chainConfig.ChainID) | ||
callContext.stack.push(chainId) | ||
chainID, _ := uint256.FromBig(interpreter.evm.chainConfig.ChainID) | ||
callContext.stack.push(chainID) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Similarly, I recommend reverting this and instead apply the change upstream. |
||
return nil, nil | ||
} | ||
|
||
|
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
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.
Generally, the geth team prefers PRs which modify only code which pertain to the work at hand. I recommend reverting this change and apply in a separate PR upstream.