ethereum 0.4.65 → 0.4.66
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/ethereum/contract.rb +0 -1
- data/lib/ethereum/version.rb +1 -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: ffb83312d1b010d2aec015ee3b64153c10a43794
|
4
|
+
data.tar.gz: 4641dcf5c926c1ecd8ae77e376ffed41e975ea4b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2735a001d4d16f769b5532094396bbe334d9541c5316d5ad28501c8ead7843f075afbc3bb0534ccc8e2fc45027b95d73bf63fabd3f3e7dce8c6aee5c365ed5c4
|
7
|
+
data.tar.gz: bb2b6f588c8307ef8eab24bf2a1e90f1c0f69116366a689681887cfb2378f0f13f1ab81e96ba4c26d2b154748f9c346ceee9689f36318fe0711b69363007795d
|
data/lib/ethereum/contract.rb
CHANGED
@@ -42,7 +42,6 @@ module Ethereum
|
|
42
42
|
end
|
43
43
|
end
|
44
44
|
deploy_payload = deploy_code + deploy_arguments
|
45
|
-
puts "sending payload #{deploy_payload}"
|
46
45
|
deploytx = connection.send_transaction({from: self.sender, gas: 2000000, gasPrice: 60000000000, data: deploy_payload})["result"]
|
47
46
|
instance_variable_set("@deployment", Ethereum::Deployment.new(deploytx, connection))
|
48
47
|
end
|
data/lib/ethereum/version.rb
CHANGED