diff options
author | Péter Szilágyi <peterke@gmail.com> | 2018-01-24 16:55:24 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-24 16:55:24 +0800 |
commit | 5c83a4e5dd600fcf19502f7fb083dc0b6393f969 (patch) | |
tree | 889e789ef24b36bd1bc2094b1867d71698b2a542 /mobile/bind.go | |
parent | 05ade19302357eba6a24348f31df140ce0eca326 (diff) | |
parent | 1bf508b449ebd42653f521ada92c782e8cb664d2 (diff) | |
download | go-tangerine-5c83a4e5dd600fcf19502f7fb083dc0b6393f969.tar go-tangerine-5c83a4e5dd600fcf19502f7fb083dc0b6393f969.tar.gz go-tangerine-5c83a4e5dd600fcf19502f7fb083dc0b6393f969.tar.bz2 go-tangerine-5c83a4e5dd600fcf19502f7fb083dc0b6393f969.tar.lz go-tangerine-5c83a4e5dd600fcf19502f7fb083dc0b6393f969.tar.xz go-tangerine-5c83a4e5dd600fcf19502f7fb083dc0b6393f969.tar.zst go-tangerine-5c83a4e5dd600fcf19502f7fb083dc0b6393f969.zip |
Merge pull request #15832 from karalabe/abigen-events
accounts/abi/bind: support event filtering in abigen
Diffstat (limited to 'mobile/bind.go')
-rw-r--r-- | mobile/bind.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile/bind.go b/mobile/bind.go index 1e861d0bc..7a1bf9e60 100644 --- a/mobile/bind.go +++ b/mobile/bind.go @@ -138,7 +138,7 @@ func BindContract(address *Address, abiJSON string, client *EthereumClient) (con return nil, err } return &BoundContract{ - contract: bind.NewBoundContract(address.address, parsed, client.client, client.client), + contract: bind.NewBoundContract(address.address, parsed, client.client, client.client, client.client), address: address.address, }, nil } |