block_io 1.0.4 → 1.0.5
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/README.md +1 -1
- data/lib/block_io.rb +2 -1
- data/lib/block_io/version.rb +1 -1
- 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: 0940811390b9b507fed0e47b2a04769206f6942c
|
|
4
|
+
data.tar.gz: ec335dcad5f5a0b8cb70524ac3a619e5e70094c5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 27f8d7f35c2d73438f0faf47e1d57b8d866dfeefde4a9080c1618eb0dd623b205caed1e345782dae052ad2039f470c0ec1a7476bfea832e67429e9916f3f8749
|
|
7
|
+
data.tar.gz: e0b5606867ac6a6618732c3ca2c05fb48822a68ee00de2728a2bf283d6514b963d53609a23ee43809adba88b5384c9ba62b26cc5bd740f0937ed6ccf2734b231
|
data/README.md
CHANGED
|
@@ -18,7 +18,7 @@ Or install it yourself as:
|
|
|
18
18
|
|
|
19
19
|
## Changelog
|
|
20
20
|
|
|
21
|
-
*11/03/14*: Reduce dependence on OpenSSL. PBKDF2 function is now Ruby-based. Should work well with Heroku's libraries.
|
|
21
|
+
*11/03/14*: Reduce dependence on OpenSSL. PBKDF2 function is now Ruby-based. Should work well with Heroku's libraries.
|
|
22
22
|
*10/18/14*: Now using deterministic signatures (RFC6979), and BIP62 to hinder transaction malleability.
|
|
23
23
|
|
|
24
24
|
|
data/lib/block_io.rb
CHANGED
|
@@ -122,9 +122,10 @@ module BlockIo
|
|
|
122
122
|
|
|
123
123
|
private
|
|
124
124
|
|
|
125
|
-
def self.get_params(args)
|
|
125
|
+
def self.get_params(args = {})
|
|
126
126
|
# construct the parameter string
|
|
127
127
|
params = ""
|
|
128
|
+
args = {} if args.nil?
|
|
128
129
|
|
|
129
130
|
args.each do |k,v|
|
|
130
131
|
params += '&' if params.length > 0
|
data/lib/block_io/version.rb
CHANGED