rippler 0.0.4 → 0.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.
- data/lib/rippler.rb +2 -2
- data/lib/rippler/version.rb +1 -1
- metadata +1 -1
data/lib/rippler.rb
CHANGED
|
@@ -15,7 +15,7 @@ module Rippler
|
|
|
15
15
|
extend Rippler::Utils
|
|
16
16
|
|
|
17
17
|
RIPPLE_URI = 'wss://s1.ripple.com:51233'
|
|
18
|
-
|
|
18
|
+
DEFAULT_ACCT = Rippler::Contacts["molecular"]
|
|
19
19
|
|
|
20
20
|
# Turn command line arguments into command json
|
|
21
21
|
def self.process args
|
|
@@ -110,7 +110,7 @@ module Rippler
|
|
|
110
110
|
# Retrieve account transactions history, print out nicely formatted transactions
|
|
111
111
|
def self.history params
|
|
112
112
|
reply = request( {'command' => "account_tx",
|
|
113
|
-
'account' =>
|
|
113
|
+
'account' => DEFAULT_ACCT,
|
|
114
114
|
'ledger_min' => 0, # 280000, # 312000,
|
|
115
115
|
'ledger_max' => 500000, #329794,
|
|
116
116
|
'resume' => 0,
|
data/lib/rippler/version.rb
CHANGED