core/vm: move vm_jit.go to evmjit.go

This commit is contained in:
Paweł Bylica 2017-01-22 11:51:50 +01:00
parent 284c0138fb
commit 2b5f3f2042
No known key found for this signature in database
GPG key ID: 7A0C037434FE77EF

View file

@ -1,4 +1,4 @@
// Copyright 2015 The go-ethereum Authors
// Copyright 2017 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
@ -426,3 +426,4 @@ func (evm *EVMJIT) Run(contract *Contract, input []byte) (ret []byte, err error)
C.evm_release_result(&r)
return output, err
}