aboutsummaryrefslogtreecommitdiffstats
path: root/accounts/abi/bind/util.go
Commit message (Collapse)AuthorAgeFilesLines
* Rebrand as tangerine-network/go-tangerineWei-Ning Huang2019-09-171-3/+3
|
* Change import go github.com/dexon-foundation/dexonWei-Ning Huang2019-06-121-3/+3
|
* all: import "context" instead of "golang.org/x/net/context"Felix Lange2017-03-231-1/+1
| | | | | | | | | | There is no need to depend on the old context package now that the minimum Go version is 1.7. The move to "context" eliminates our weird vendoring setup. Some vendored code still uses golang.org/x/net/context and it is now vendored in the normal way. This change triggered new vet checks around context.WithTimeout which didn't fire with golang.org/x/net/context.
* all: next batch of log polishes to contextual versionsPéter Szilágyi2017-02-281-1/+1
|
* accounts, eth/downloader: use "err" instead of "error" in logsPéter Szilágyi2017-02-271-1/+1
|
* accounts, cmd: port packages over to the new logging systemPéter Szilágyi2017-02-231-4/+5
|
* all: blidly swap out glog to our log15, logs need reworkPéter Szilágyi2017-02-231-4/+3
|
* accounts/abi/bind: add utilities for waiting on transactionsFelix Lange2016-08-231-0/+76
The need for these functions comes up in code that actually deploys and uses contracts. As of this commit, they can be used with both SimulatedBackend and ethclient. SimulatedBackend gains some additional methods in the process and is now safe for concurrent use.