bitcoin2graphdb 0.2.3 → 0.2.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1c22d36a704acb71ce152862fca95a9436a216b0
4
- data.tar.gz: 88076f2c98a047a85fc5ce8528cf054c004e938d
3
+ metadata.gz: 4c6bc8237719fd885d12cb9927d86f68a1caaf58
4
+ data.tar.gz: d49ec05720870ed069667d8b790df4dc079fb099
5
5
  SHA512:
6
- metadata.gz: 086e916d346f0a646a501ff1a148f0cce4c49778b236826d3df32fde2eb4f47138a4a89c989637c2ba031ff2285bf7a5305c24a8d4bfa9d0894a8d47cc4cd1ae
7
- data.tar.gz: 3d76ed2351aeb4fe934d1db3457e46215b3ca8017fc8b31e79aadff85fdab2731e19f42f3f2d068a6546174d86717b3747197f075ce741a151100be5703f618d
6
+ metadata.gz: 760b28423c9fbfc77f42f488fe474d78dc233a0ed663e4d6261ed99dbfd520d3b25a5d62709e902c959cb9650de34d67db10b7f106153ce2aecc7d1f292a8fca
7
+ data.tar.gz: b759963e2d34a667b458077e511aad43c30255108f3c9f83d47e1a743b98a61a15e19920e87f54bc03f368a3b661264fd9f6881d4f0d8866c4b0cdd9ebf9db01
@@ -1,3 +1,3 @@
1
1
  module Bitcoin2Graphdb
2
- VERSION = "0.2.3"
2
+ VERSION = "0.2.4"
3
3
  end
@@ -15,7 +15,6 @@ module Graphdb
15
15
 
16
16
  def create_from_txid(txid)
17
17
  tx = super(txid)
18
- puts "oa create tx = #{txid}. #{Time.now}"
19
18
  outputs = Bitcoin2Graphdb::Bitcoin.provider.oa_outputs(txid)
20
19
  graph_outputs = tx.outputs.to_a
21
20
  outputs.each{|o|
@@ -17,7 +17,6 @@ module Graphdb
17
17
  after_create :add_out_point_rel
18
18
 
19
19
  def self.create_from_hash(hash)
20
- puts "create tx_in #{Time.now}"
21
20
  tx_in = new
22
21
  tx_in.txid = hash['txid']
23
22
  tx_in.vout = hash['vout']
@@ -19,7 +19,6 @@ module Graphdb
19
19
  scope :with_out_index, -> (n){where(n: n)}
20
20
 
21
21
  def self.create_from_hash(hash)
22
- puts "create tx_out #{Time.now}"
23
22
  tx_out = new
24
23
  tx_out.value = hash['value']
25
24
  tx_out.n = hash['n']
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bitcoin2graphdb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - azuchi