txcatcher 0.1.76 → 0.1.77

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 95e2800adb929dc5f1e9ae34f0e1b34ba21481c3
4
- data.tar.gz: 795a2008f84c2b8903462b20f45156b3f2179993
3
+ metadata.gz: ea593fd4c78d12599cf600ead87517f52ef366d6
4
+ data.tar.gz: 5a556ec49a48a22710db759452384713e10352c2
5
5
  SHA512:
6
- metadata.gz: 420026a98d183e4015a70cb988a7913147ca52c8b8d984f3e475466ca33b7eb114260d8d33fff93ea75f5544ab6683ee3710423dafbf54f0e9df5ae9aefe0ddd
7
- data.tar.gz: b5c0f92e0ceb8903a8fc638e55cf66d482bf8a571db9c01a0916f38abc4a3dfdaacfb83dbe9beb415b2f60294541cb156a1a02dd35bc50740f2c9916de20d879
6
+ metadata.gz: ae503ebc27cdb2636f38e74501c53a5fa48956acef23a9e33168c75545b0a96a8e0055373b1aa45757c3b3f5c1b6d5cdf22810781633563bfb2c79ecbe08235f
7
+ data.tar.gz: 48a1433e8e7461cb3147b5a31080b328455f99164a6535d39814682e7a67b4b32c85818540673c2dba1ddff06984374bd9117670e30f12d8b5390240beb9ad41
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.76
1
+ 0.1.77
@@ -4,7 +4,7 @@ Sequel.migration do
4
4
  primary_key :id, type: :Bignum
5
5
  String :txid, index: true
6
6
  String :hex, text: true
7
- Integer :amount
7
+ Bignum :amount
8
8
  Integer :block_height
9
9
  end
10
10
  end
@@ -3,7 +3,7 @@ Sequel.migration do
3
3
  create_table(:addresses) do
4
4
  primary_key :id, type: :Bignum
5
5
  String :address, index: true
6
- Integer :received, default: 0
6
+ Bignum :received, default: 0
7
7
  end
8
8
  end
9
9
  end
@@ -2,7 +2,7 @@ Sequel.migration do
2
2
  change do
3
3
  create_table(:deposits) do
4
4
  primary_key :id, type: :Bignum
5
- Integer :amount, null: false
5
+ Bignum :amount, null: false
6
6
  foreign_key :transaction_id, index: true
7
7
  foreign_key :address_id, index: true
8
8
  end
data/txcatcher.gemspec CHANGED
@@ -2,11 +2,11 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: txcatcher 0.1.76 ruby lib
5
+ # stub: txcatcher 0.1.77 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "txcatcher"
9
- s.version = "0.1.76"
9
+ s.version = "0.1.77"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: txcatcher
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.76
4
+ version: 0.1.77
5
5
  platform: ruby
6
6
  authors:
7
7
  - Roman Snitko