3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-01-31 07:12:17 +00:00
altcoinj/TODO

26 lines
987 B
Plaintext
Raw Normal View History

2011-03-07 10:17:10 +00:00
Here is a brief list of things that still need to be done.
More unit tests:
- Create a MockNetworkConnection and use it to test the Peer.
2011-06-27 14:34:48 +00:00
API:
- Reorganize the package layout to be more modular.
- Support multiple active wallets.
- Allow sorting of transactions by time.
2011-03-07 10:17:10 +00:00
Protocol:
- Start up faster
2011-06-27 14:34:48 +00:00
- Store a block locator in the persisted chain
- Use the getheaders command to speed up the initial chain download
2011-03-07 10:17:10 +00:00
- Implement tx fees.
- Longer term potentially add a getmerklebranch protocol command so we can check 0-confirmation transactions.
2011-06-27 14:34:48 +00:00
- Support PeerGroups for holding open/using multiple connections at once.
2011-03-07 10:17:10 +00:00
Examples/documentation:
- Implement a simple Swing GUI payment app.
Cleanup:
- Find a way to avoid some horrid hacks when shutting down the network connection.
- Implement a BitCoin class that encapsulates a BigInteger and formatting.
- Make NetworkParameters use subclasses instead of static methods to construct.