Arthur Britto
6d8afeca47
Work on path finder integration.
2012-11-30 17:14:25 -08:00
Arthur Britto
07a3eafd8a
Disallow invalid flags on OfferCreate transactions.
2012-11-30 17:12:51 -08:00
Arthur Britto
45841edb7d
Disallow invalid flags on payment transactions.
2012-11-30 17:12:19 -08:00
Arthur Britto
643d4e1c7e
JS: Hide _secret and clean up transaction submiting.
2012-11-30 16:02:59 -08:00
Arthur Britto
6a3e9a7d24
JS: default build_path is now false and is actually passed.
2012-11-30 15:50:54 -08:00
JoelKatz
fe24387f91
Fix.
2012-11-29 18:41:24 -08:00
JoelKatz
4cae3dca7b
Merge branch 'master' of github.com:jedmccaleb/NewCoin
2012-11-29 18:40:16 -08:00
JoelKatz
4f58ab14b0
Don't break the unit tests by slowing shutdown.
2012-11-29 18:40:01 -08:00
jed
0865c99cee
windows
2012-11-29 18:28:49 -08:00
jed
9ce31adc28
Merge branch 'master' of github.com:jedmccaleb/NewCoin
2012-11-29 17:32:27 -08:00
jed
07cbb4a4f4
change emit
2012-11-29 17:31:19 -08:00
Stefan Thomas
eb185769fa
Fix account_tx - metadata was being read from incorrect db column.
2012-11-29 17:10:13 -08:00
Arthur Britto
007f241040
Merge branch 'master' of github.com:jedmccaleb/NewCoin
2012-11-29 16:05:48 -08:00
Arthur Britto
7e8d13b554
JS: More fixes for caching.
2012-11-29 16:05:38 -08:00
Stefan Thomas
6a889d6ccc
Add missing comma (fix transaction metadata persistence.)
2012-11-29 15:56:04 -08:00
jed
1f0aa8f56c
have remote.js emit all messages
2012-11-29 15:54:59 -08:00
Arthur Britto
460776115c
Merge branch 'master' of github.com:jedmccaleb/NewCoin
2012-11-29 15:46:56 -08:00
Arthur Britto
6627d7160d
Merge commit '28268bbaed27f5df9fbce7888ebe467374efeb22'
2012-11-29 15:46:19 -08:00
Arthur Britto
28268bbaed
JS: Fix transparent caching of ledger entries.
2012-11-29 15:33:23 -08:00
JoelKatz
0fe9f178ef
NetworkOPs function to test if we have in our database a specified range of ledger numbers.
2012-11-29 11:46:22 -08:00
JoelKatz
e05a24d055
Document the ledger_history settings.
2012-11-29 11:38:28 -08:00
JoelKatz
6d858ab178
Get rid of "full history". You can now configure how many back ledgers you want to retrieve
...
on startup. The default is 256. The configuration element is "ledger_history". Valid values are:
0/off/false/none = don't retrieve any history
on/full/yes/-1 = retrieve all history back to the genesis ledger
<number> = retrieve that number of past ledgers
2012-11-29 11:33:33 -08:00
JoelKatz
87ee255251
Save txn metadata into transaction database.
2012-11-29 10:35:53 -08:00
JoelKatz
326250b554
Escape helper.
2012-11-29 10:35:44 -08:00
JoelKatz
dd1ff90351
Merge branch 'master' of github.com:jedmccaleb/NewCoin
2012-11-29 10:08:12 -08:00
JoelKatz
a38e7fd496
Metadata versions of the transaction SQL helper functions.
2012-11-29 09:50:34 -08:00
jed
2d6a7f09e4
Merge branch 'notdone'
2012-11-29 09:23:55 -08:00
jed
23f88680d0
Merge branch 'master' of github.com:jedmccaleb/NewCoin
2012-11-29 09:23:41 -08:00
jed
92cee7d089
Merge branch 'master' of github.com:jedmccaleb/NewCoin into notdone
2012-11-29 09:23:08 -08:00
jed
32c231ab57
add meta to account_tx
2012-11-29 09:22:44 -08:00
JoelKatz
377747fb2c
Helper function.
2012-11-29 09:00:16 -08:00
JoelKatz
2664229017
Fix a compiler warning.
2012-11-29 09:00:05 -08:00
jed
7e834d8a39
Merge branch 'master' of github.com:jedmccaleb/NewCoin
2012-11-29 08:48:13 -08:00
JoelKatz
5cf15b3f4e
Shutdown cleanly on control-C.
2012-11-28 20:49:07 -08:00
Arthur Britto
6a72d6eb8a
Merge branch 'master' of github.com:jedmccaleb/NewCoin
2012-11-28 19:19:57 -08:00
Arthur Britto
2268989609
Work toward ripple_path_find.
2012-11-28 19:19:39 -08:00
jed
e90a1a404d
still working
2012-11-28 16:29:15 -08:00
JoelKatz
72777b6b83
Remove some shared pointers on load monitors.
2012-11-28 15:53:07 -08:00
JoelKatz
8ba70c73f6
Make some boost::format objects static.
2012-11-28 15:35:12 -08:00
JoelKatz
bfbf0aa185
Eliminate redundant write set waits. You don't need to wait on future write sets.
2012-11-28 15:34:47 -08:00
JoelKatz
6aca65ff76
Get the shared pointers out of the scoped lock stuff. We don't need it.
2012-11-28 15:27:20 -08:00
Jed
725761d60e
Remove a C++11 warning.
2012-11-27 16:44:56 -08:00
jed
dc4e5bc70a
Merge branch 'master' of github.com:jedmccaleb/NewCoin
2012-11-26 22:14:52 -08:00
Stefan Thomas
5c3ffb4fd3
If you need override a method, do it straight up, don't abuse events.
...
Events are meant for managing asynchronous activity. Don't replace normal method
calls with events.
Look at the implementation for request() in the removed code. We can see that an
event is being emitted, but the code catching it could be anywhere in this file
or a different file or even in multiple places. Code containing too many events
quickly becomes unmaintainable.
Events are the most complex tool we have, callbacks are less complex and
synchronous calls are the least complex. Use the least complex tool that can
solve your problem.
2012-11-26 18:49:29 -08:00
Stefan Thomas
f1f7ccda52
Add digit group separator formatting to to_human().
2012-11-26 18:49:29 -08:00
Stefan Thomas
e94765d0da
Fix for non-native currencies in parse_human.
2012-11-26 18:49:29 -08:00
Arthur Britto
11d0e93cd8
UT: Move test account configuration from config-example.js.
2012-11-26 16:30:35 -08:00
Arthur Britto
2bffd0d699
JS: Fix local_fee for remote.js.
2012-11-26 16:28:52 -08:00
Stefan Thomas
49ac818e28
Added different logging style when running in browser.
2012-11-26 15:12:15 -08:00
Stefan Thomas
6aa468f174
I think that comment belongs here.
2012-11-26 14:31:45 -08:00