etherscan 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/etherscan.gemspec +1 -1
- data/lib/etherscan/call.rb +0 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4699cf739dc431efd3347910817b7072dd917ab5
|
4
|
+
data.tar.gz: f94819ec594e8c3d7b84029b91cca4e25c7e6a70
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 713e186b5087cebf881f3967b7818a9dfd775b44edaff0672a6887d289a902ecedba200f082eb19392d78d33f62ee4874326f8c86887c908bceab06f1703b84a
|
7
|
+
data.tar.gz: 6860af4ff07970e9543179ab87389759277be3f04731aaa5e1011667b8b63676e7ac5c4c9161be6e327925fc351bf7b7bc3f3c6912c72191101bab6ed42a09df
|
data/etherscan.gemspec
CHANGED
@@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = 'etherscan'
|
8
|
-
spec.version = '0.1.
|
8
|
+
spec.version = '0.1.2'
|
9
9
|
spec.authors = ['wuminzhe']
|
10
10
|
spec.email = ['wuminzhe@gmail.com']
|
11
11
|
spec.description = 'Forked from: https://github.com/sebs/etherscanio-rb. 3rd party using to the API at etherscan.io'
|
data/lib/etherscan/call.rb
CHANGED
@@ -83,7 +83,6 @@ module Etherscan
|
|
83
83
|
uri += '&gasPrice=' + gasPrice if gasPrice
|
84
84
|
uri += '&fromBlock=' + fromBlock if fromBlock
|
85
85
|
uri += '&toBlock=' + toBlock if toBlock
|
86
|
-
uri += '&address=' + address if address
|
87
86
|
if topics
|
88
87
|
topics.each do |topic|
|
89
88
|
uri += "&#{topic['name']}=" + topic['value']
|