mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-01-31 15:22:16 +00:00
34fea86708
1) Introduce partial support for caching the underlying byte arrays during message deserialization, so re-serialization can be skipped in the case where a message is not modified. 2) Add c'tors that allow a message to be configured to lazily parse on-demand. Note that the getters/setters that make lazy parsing transparent are coming in future commits.
38 lines
1.3 KiB
Plaintext
38 lines
1.3 KiB
Plaintext
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.
|
|
|
|
API:
|
|
- Reorganize the package layout to be more modular.
|
|
- Support multiple active wallets.
|
|
- Allow sorting of transactions by time.
|
|
|
|
Protocol:
|
|
- Start up faster
|
|
- Store a block locator in the persisted chain
|
|
- Use the getheaders command to speed up the initial chain download
|
|
- Implement tx fees.
|
|
- Longer term potentially add a getmerklebranch protocol command so we can check 0-confirmation transactions.
|
|
- Support PeerGroups for holding open/using multiple connections at once.
|
|
|
|
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.
|
|
|
|
|
|
|
|
==========
|
|
|
|
Impacts from Steves changes:
|
|
- Reformat affected files
|
|
- JavaDocs for the c'tors that take parseLazy/parseRetain
|
|
- Copyright header/correct author for EmptyMessage/ChildMessage
|
|
- Remove superfluous empty lines in ListMessage.java
|
|
- Remove VersionMessage check in Message serialization roundtrip checks
|
|
- Delete dead code in Message.checkParsed
|