rippler 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- 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