bitcoinrb 1.1.0 → 1.1.1
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/.github/workflows/ruby.yml +2 -3
- data/.ruby-version +1 -1
- data/lib/bitcoin/chain_params.rb +2 -1
- data/lib/bitcoin/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9d105b6b0882459caee5c30db5e4ca8700a274c8fac2cd27f863e61719a1b484
|
|
4
|
+
data.tar.gz: fb458ded6c3c0a892bcb546f6e753b160aeff8afaa917a5510eefd090d048dbe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b6062ddface7588de792e84b2c6c6394ffb145dd27aaf5fe22aae0ba191491478b958bf481a55c3f8547aa0a6066e8c7439c7ef4b625b26446dd5583f54cb61c
|
|
7
|
+
data.tar.gz: 6768c846fb94280e5ef4f776f15ac532f1868142998d37bf551070be925a4ad7b19243322f287d1f607f1abf24816cad337735ff2eb6be3caa5afe4c187171fa
|
data/.github/workflows/ruby.yml
CHANGED
|
@@ -19,7 +19,7 @@ jobs:
|
|
|
19
19
|
runs-on: ubuntu-latest
|
|
20
20
|
strategy:
|
|
21
21
|
matrix:
|
|
22
|
-
ruby-version: ['2.6', '2.7', '3.0']
|
|
22
|
+
ruby-version: ['2.6', '2.7', '3.0', '3.1']
|
|
23
23
|
|
|
24
24
|
steps:
|
|
25
25
|
- uses: actions/checkout@v2
|
|
@@ -28,8 +28,7 @@ jobs:
|
|
|
28
28
|
- name: Set up Ruby
|
|
29
29
|
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
|
|
30
30
|
# change this to (see https://github.com/ruby/setup-ruby#versioning):
|
|
31
|
-
|
|
32
|
-
uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
|
|
31
|
+
uses: ruby/setup-ruby@v1
|
|
33
32
|
with:
|
|
34
33
|
ruby-version: ${{ matrix.ruby-version }}
|
|
35
34
|
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
ruby-3.
|
|
1
|
+
ruby-3.1.2
|
data/lib/bitcoin/chain_params.rb
CHANGED
|
@@ -80,7 +80,8 @@ module Bitcoin
|
|
|
80
80
|
end
|
|
81
81
|
|
|
82
82
|
def self.init(name)
|
|
83
|
-
|
|
83
|
+
yaml = File.open("#{__dir__}/chainparams/#{name}.yml")
|
|
84
|
+
i = YAML.respond_to?(:unsafe_load) ? YAML.unsafe_load(yaml) : YAML.load(yaml)
|
|
84
85
|
i.dust_relay_fee ||= Bitcoin::DUST_RELAY_TX_FEE
|
|
85
86
|
i
|
|
86
87
|
end
|
data/lib/bitcoin/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bitcoinrb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- azuchi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-05-
|
|
11
|
+
date: 2022-05-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ecdsa
|
|
@@ -516,7 +516,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
516
516
|
- !ruby/object:Gem::Version
|
|
517
517
|
version: '0'
|
|
518
518
|
requirements: []
|
|
519
|
-
rubygems_version: 3.
|
|
519
|
+
rubygems_version: 3.3.7
|
|
520
520
|
signing_key:
|
|
521
521
|
specification_version: 4
|
|
522
522
|
summary: The implementation of Bitcoin Protocol for Ruby.
|