istox 0.1.85.pre.test1 → 0.1.85.pre.test2

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
  SHA256:
3
- metadata.gz: 1dcd810577ffd0c7b57c7727b3f1eff90af5adf4d51f6a7a5e7b6579b05dded9
4
- data.tar.gz: c7687fc0a5d2598cf353c843b8b5801299bf3c792465764963158f3af2f5b9d1
3
+ metadata.gz: e11e830821144550d4de53072e19a20469c91ba790c02fcb958d0bd37943492b
4
+ data.tar.gz: 3afc73b96c0f0fe8871c81393d272f7c7b5f691be9b0b3939848fb137c08747d
5
5
  SHA512:
6
- metadata.gz: 9790119d241a18a535aff32c2102fae262e4ac694b55652c9aef41be53932639af17188fd835638e5b76a4e92e5ab9bfb87caa49d0e5b4fb1e131771f64d12e8
7
- data.tar.gz: 589078155df41802b63561f887c3e8ad1742243afb659069e91e50ab138f433a7d4ae9b6ea336b49ea8aa22207d2299b5b7f6439931bf906869de7b12fd36c4b
6
+ metadata.gz: dccaa2baf64e3bb4f391b6349d58c060308ceb7629304da5f2b51d51960cf62da620654f5462085ac61e4f52b7b01fdbb1490778beb15c30c36a7e4764d01b1e
7
+ data.tar.gz: ba825a68040599239ad850a101c5c3079a63ecb81c7e94a3c9e9aea8d05aea517525352257e7f2b12b4eae3105112beaa49d7e820b9f65649d7e9fb600ba8029
@@ -28,7 +28,6 @@ module Istox
28
28
  require 'istox/models/blockchain_receipt'
29
29
  require 'istox/models/concerns/blockchain_receipt_query'
30
30
  require 'istox/consumers/blockchain_status_handler'
31
- require 'istox/inherited_migrations/create_blockchain_receipts'
32
31
  require 'istox/logging/hash_logging'
33
32
  require 'istox/logging/log_formatter'
34
33
  require 'istox/quant/bond'
@@ -1,3 +1,3 @@
1
1
  module Istox
2
- VERSION = '0.1.85-test1'.freeze
2
+ VERSION = '0.1.85-test2'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: istox
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.85.pre.test1
4
+ version: 0.1.85.pre.test2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Siong Leng
@@ -302,7 +302,6 @@ files:
302
302
  - lib/istox/helpers/order_book.rb
303
303
  - lib/istox/helpers/publisher.rb
304
304
  - lib/istox/helpers/vault.rb
305
- - lib/istox/inherited_migrations/create_blockchain_receipts.rb
306
305
  - lib/istox/interfaces/chainhub/transaction.rb
307
306
  - lib/istox/logging/hash_logging.rb
308
307
  - lib/istox/logging/log_formatter.rb
@@ -1,26 +0,0 @@
1
- module Istox
2
- class CreateBlockchainReceipts < ActiveRecord::Migration[5.0]
3
- def initialize(_, _, table_name = nil)
4
- @table_name = table_name
5
- @table_name ||= :blockchain_receipts
6
- end
7
-
8
- def change
9
- create_table @table_name do |t|
10
- t.string :txid
11
- t.string :txhash
12
- t.integer :resource_id
13
- t.string :resource_action
14
- t.string :resource_name
15
- t.boolean :resource_handled
16
- t.datetime :deleted_at, index: true
17
- t.timestamps
18
- t.string :sid
19
- t.string :status, default: 'pending'
20
- t.text :message
21
- t.boolean :is_request, default: false
22
- t.integer :lock_version
23
- end
24
- end
25
- end
26
- end