diff options
author | ferhat elmas <elmas.ferhat@gmail.com> | 2017-11-11 01:06:45 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2017-11-11 01:06:45 +0800 |
commit | 86f6568f6618945b19057553ec32690d723da982 (patch) | |
tree | ea7d9f92f3bcf5af22be1edfdbb302b5a5161f14 /core | |
parent | 3ee86a57f328530707974288e9db87b7c05283f9 (diff) | |
download | go-tangerine-86f6568f6618945b19057553ec32690d723da982.tar.gz go-tangerine-86f6568f6618945b19057553ec32690d723da982.tar.zst go-tangerine-86f6568f6618945b19057553ec32690d723da982.zip |
build: enable unconvert linter (#15456)
* build: enable unconvert linter
- fixes #15453
- update code base for failing cases
* cmd/puppeth: replace syscall.Stdin with os.Stdin.Fd() for unconvert linter
Diffstat (limited to 'core')
-rw-r--r-- | core/vm/interpreter.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/vm/interpreter.go b/core/vm/interpreter.go index 516438509..ea5468f90 100644 --- a/core/vm/interpreter.go +++ b/core/vm/interpreter.go @@ -161,8 +161,8 @@ func (in *Interpreter) Run(snapshot int, contract *Contract, input []byte) (ret if in.cfg.Debug { logged = false - pcCopy = uint64(pc) - gasCopy = uint64(contract.Gas) + pcCopy = pc + gasCopy = contract.Gas stackCopy = newstack() for _, val := range stack.data { stackCopy.push(val) |