berycoin-gem 0.1.5 → 0.1.6
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/lib/berycoin/gem.rb +2 -2
- data/lib/berycoin/gem/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: becee8c12e2a1932e402403bec8cec9f41c01ba7
|
4
|
+
data.tar.gz: 8106515bed4194725fffc1edf60fa929d4a11e5f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fe562199544ba59d06ad5094625eadce53e04716a85b9447d88e725610bf860e5c3514828754506e7af8ff460b3d1c55a7bdaba1dc8241174be9e73659df33bf
|
7
|
+
data.tar.gz: f532e1cc64eade1ff7913d63fb537ab598bbe27ed0b2ef706681f4e6e135fcae61d80e5d1996e68ec6fe0750b51c15316a38ba7943f25fb5ca66104fb9efb231
|
data/lib/berycoin/gem.rb
CHANGED
@@ -422,8 +422,8 @@ module Berycoin
|
|
422
422
|
def walletpassphrase (passphrase, timeout)
|
423
423
|
H.walletpassphrase (passphrase, timeout)
|
424
424
|
end
|
425
|
-
def walletpassphrasechange(oldpassphrase,newpassphrase)
|
426
|
-
H.walletpassphrasechange
|
425
|
+
def walletpassphrasechange(oldpassphrase, newpassphrase)
|
426
|
+
H.walletpassphrasechange(oldpassphrase, newpassphrase)
|
427
427
|
end
|
428
428
|
def Wallet.setaccount(berycoinaddress,account)
|
429
429
|
H.setaccount(berycoinaddress,account)
|
data/lib/berycoin/gem/version.rb
CHANGED