istox 0.1.85 → 0.1.86
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/lib/istox.rb +1 -2
- data/lib/istox/version.rb +1 -1
- metadata +2 -3
- data/lib/istox/migrations/create_blockchain_receipts.rb +0 -26
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 54f934711b93a3532841dd514bf6acf9339719df7c029b0f040bf75002659a4d
|
4
|
+
data.tar.gz: f4ae4d0d97e732d911a805beacfcc2e6222b04bf0cdd35c1b720e3ac46561bc1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 36f9db1bfa5ca342b0f49308b5d4e18f84f1021daf58273962fcf7255be2c458edc063b951847efed3fe6bb9f2398b6fb322357d92df4495b47f1b21118c13e7
|
7
|
+
data.tar.gz: b8dcae36fa774e2dbe2c8fdcfa3f6d40854204b39dfe134730a4897a3c91ff4bb3a58394a77abfb7224d4139b2d1bfa427305cd6a68af329f7b836f3b2fceeed
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
istox (0.1.
|
4
|
+
istox (0.1.85.pre.test2)
|
5
5
|
binding_of_caller
|
6
6
|
bunny (>= 2.12.0)
|
7
7
|
graphlient
|
@@ -95,7 +95,7 @@ GEM
|
|
95
95
|
faraday
|
96
96
|
faraday_middleware
|
97
97
|
graphql-client
|
98
|
-
graphql (1.9.
|
98
|
+
graphql (1.9.12)
|
99
99
|
graphql-client (0.15.0)
|
100
100
|
activesupport (>= 3.0)
|
101
101
|
graphql (~> 1.8)
|
data/lib/istox.rb
CHANGED
@@ -28,8 +28,7 @@ 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/migrations/create_blockchain_receipts'
|
32
31
|
require 'istox/logging/hash_logging'
|
33
32
|
require 'istox/logging/log_formatter'
|
34
|
-
require
|
33
|
+
require 'istox/quant/bond'
|
35
34
|
end
|
data/lib/istox/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: istox
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.86
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Siong Leng
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-09-
|
11
|
+
date: 2019-09-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bunny
|
@@ -305,7 +305,6 @@ files:
|
|
305
305
|
- lib/istox/interfaces/chainhub/transaction.rb
|
306
306
|
- lib/istox/logging/hash_logging.rb
|
307
307
|
- lib/istox/logging/log_formatter.rb
|
308
|
-
- lib/istox/migrations/create_blockchain_receipts.rb
|
309
308
|
- lib/istox/models/blockchain_receipt.rb
|
310
309
|
- lib/istox/models/concerns/blockchain_receipt_query.rb
|
311
310
|
- lib/istox/quant/bond.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
|