- Apr 10, 2018
-
-
Elad_ authored
This commit is meant to allow ecosystem projects such as ethersphere to minimize CI build times by specifying an environment variable with the packages to run tests on. If the environment variable isn't defined the build script will test all packages so this shouldn't affect the main go-ethereum repository.
-
Felix Lange authored
The 'from' and 'to' methods on StateTransitions are reader methods and shouldn't have inadvertent side effects on state. It is safe to remove the check in 'from' because account existence is implicitly checked by the nonce and balance checks. If the account has non-zero balance or nonce, it must exist. Even if the sender account has nonce zero at the start of the state transition or no balance, the nonce is incremented before execution and the account will be created at that time. It is safe to remove the check in 'to' because the EVM creates the account if necessary. Fixes #15119
-
ligi authored
-
Péter Szilágyi authored
Dockerfile.alltools: fix invalid command
-
Felix Lange authored
* common: delete StringToAddress, StringToHash These functions are confusing because they don't parse hex, but use the bytes of the string. This change removes them, replacing all uses of StringToAddress(s) by BytesToAddress([]byte(s)). * eth/filters: remove incorrect use of common.BytesToAddress
-
Péter Szilágyi authored
-
Péter Szilágyi authored
cmd/puppeth: fix node deploys for updated dockerfile user
-
Péter Szilágyi authored
-
Péter Szilágyi authored
Change handling of dirty objects in state
-
Martin Holst Swende authored
-
Martin Holst Swende authored
-
- Apr 09, 2018
-
-
Gary Rong authored
-
Felix Lange authored
-
Ivo Georgiev authored
-
DoubleWoodH authored
-
- Apr 06, 2018
-
-
dm4 authored
-
Zhenguo Niu authored
-
- Apr 05, 2018
-
-
Federico Gimenez authored
-
Steven Roose authored
Most of these methods did not contain all the relevant information inside the object and were not using a similar formatting type. Moreover, the existence of a suboptimal String method breaks usage with more advanced data dumping tools like go-spew.
-
- Apr 04, 2018
-
-
Giovanni HoSang authored
-
Ricardo Domingos authored
-
Yusup authored
-
Nguyen Sy Thanh Son authored
-
- Apr 03, 2018
-
-
Jia Chenhui authored
-
David Huie authored
-
Li Xuanji authored
-
- Mar 28, 2018
-
-
Felix Lange authored
This is supposed to fix the FTP upload issue according to travis-ci/travis-ci#9391.
-
Péter Szilágyi authored
-
Martin Holst Swende authored
-
Jia Chenhui authored
- Uniform code style.
-
- Mar 27, 2018
-
-
Guillaume Ballet authored
- Fixes #16271. What was appeneded was a pointer to an object that changes during the iteration. - The topic is allocated as a 4-byte array, fill partial topics with 0s. Partial topics are currently disabled, but would crash as they rely on the presence of byte number 3.
-
Zsolt Felföldi authored
-
Péter Szilágyi authored
core/vm: Fixed typos in core/vm/interpreter.go
-
hydai authored
-
- Mar 26, 2018
-
-
Felix Lange authored
-
Felix Lange authored
-
Felix Lange authored
-
Guillaume Ballet authored
-
Péter Szilágyi authored
core/vm: Fixed typos
-
hydai authored
-