txcatcher 0.1.98 → 0.1.99
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 +4 -4
- data/VERSION +1 -1
- data/lib/txcatcher/server.rb +1 -1
- data/txcatcher.gemspec +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e158896889c01b48727dfd95eb5696a0944c6946de501b1ae0580fb0cfe4573a
|
|
4
|
+
data.tar.gz: 9c6e3b2906bbda3dfdd55fd26ecbd5e11a2cce85398ed58fc6e9092d31e6a84c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a79d5a88e5c01480febb6f663d66e7f3abf40ee39d616489b9101caaeed75d0165383143559bbad87444878d9f6ff67d7c84c1569e11349014a799b4a980143e
|
|
7
|
+
data.tar.gz: 99264405cdd1a7dde60fadb1d1b13cff00dc601cdf55c524538fbcccbabb8132dd819e0ce92642b8d710fcb5f7a671f7f0a82bf2ee33bda74512350d81ea02a5
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.99
|
data/lib/txcatcher/server.rb
CHANGED
|
@@ -84,7 +84,7 @@ module TxCatcher
|
|
|
84
84
|
# in a gateway timeout, if there are a lot of transactions to be updated. Instead,
|
|
85
85
|
# we collect all txs in an array and then update them in bulk here.
|
|
86
86
|
txs_to_update.map! { |t| [t.id, true, t.update_block_height!] }
|
|
87
|
-
TxCatcher.db_connection[:transactions].import([:id, :protected, :
|
|
87
|
+
TxCatcher.db_connection[:transactions].import([:id, :protected, :block_height], txs_to_update)
|
|
88
88
|
|
|
89
89
|
[200, {}, utxos.to_json]
|
|
90
90
|
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.
|
|
5
|
+
# stub: txcatcher 0.1.99 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "txcatcher".freeze
|
|
9
|
-
s.version = "0.1.
|
|
9
|
+
s.version = "0.1.99"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib".freeze]
|