Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
89014b45
Commit
89014b45
authored
Oct 21, 2016
by
Hao Bryan Cheng
Committed by
Felix Lange
Oct 21, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
core/vm: Ignore EnableJit ChainConfig setting (#3166)
parent
f8608a52
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
vm.go
core/vm/vm.go
+3
-1
No files found.
core/vm/vm.go
View file @
89014b45
...
@@ -78,7 +78,9 @@ func (evm *EVM) Run(contract *Contract, input []byte) (ret []byte, err error) {
...
@@ -78,7 +78,9 @@ func (evm *EVM) Run(contract *Contract, input []byte) (ret []byte, err error) {
codehash
=
crypto
.
Keccak256Hash
(
contract
.
Code
)
codehash
=
crypto
.
Keccak256Hash
(
contract
.
Code
)
}
}
var
program
*
Program
var
program
*
Program
if
evm
.
cfg
.
EnableJit
{
if
false
{
// JIT disabled due to JIT not being Homestead gas reprice ready.
// If the JIT is enabled check the status of the JIT program,
// If the JIT is enabled check the status of the JIT program,
// if it doesn't exist compile a new program in a separate
// if it doesn't exist compile a new program in a separate
// goroutine or wait for compilation to finish if the JIT is
// goroutine or wait for compilation to finish if the JIT is
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment