txcatcher 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- 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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1ad836b6bfc449c217c567752f17d24aa2b3656b
|
4
|
+
data.tar.gz: db3033df9af8f9923c8aa21e2e41f8a8effab623
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2f2e45bf54b63f1262909a3f051a9d270edc9b88ae47b4abafda15a4e2af37423aa77a051d0b9cc2a5c50afd01aa45ca43a65ba3c7f827cdb3aa65cc745af080
|
7
|
+
data.tar.gz: 9f86649d0540f376adb8d09bf820e84680335bbeb2fb0ea3880566f3fdfe1528b685c2ee4ffcda52f2b5bfa971bff17ccb3cd89817504dbe1a5fa9120ffba1da
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.4
|
data/lib/txcatcher/server.rb
CHANGED
@@ -18,7 +18,7 @@ module TxCatcher
|
|
18
18
|
elsif path.start_with? "/tx/send"
|
19
19
|
broadcast_tx(params["rawtx"])
|
20
20
|
elsif path == "/" || path.empty?
|
21
|
-
[200, {}, "
|
21
|
+
[200, {}, "TxCatcher server, #{TxCatcher::Config.rpcnode["name"]}, current_block_height: #{TxCatcher.current_block_height}"]
|
22
22
|
else
|
23
23
|
[404, {}, { error: "404, not found" }.to_json]
|
24
24
|
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.4 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "txcatcher"
|
9
|
-
s.version = "0.1.
|
9
|
+
s.version = "0.1.4"
|
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"]
|