Mike Hearn
e18b9d363e
Script: add support for crafting multisig outputs and hide program behind Script.getProgram()
2013-04-22 17:08:05 +02:00
Mike Hearn
f88bdc5fe3
Wallet: make keychain private and add a remove method.
2013-04-22 13:45:38 +02:00
Mike Hearn
5112a94955
WalletTool: remove redundant if test
2013-04-22 13:36:12 +02:00
Mike Hearn
1341529228
Script: refactor signature checking out into separate methods.
2013-04-19 16:01:55 +02:00
Mike Hearn
c53a137ca7
Pull some code up from WalletTest into a superclass to make writing test cases that need wallets+stores easier.
2013-04-19 15:20:46 +02:00
Mike Hearn
b5b984a741
BitcoindComparisonTool: minor fixes
2013-04-19 13:14:28 +02:00
Mike Hearn
82171f5b50
Deprecate the getFromAddress() getters and simplify the Script c'tor by removing superfluous parameters.
2013-04-18 15:35:34 +02:00
Mike Hearn
197f0824ae
Use my DNS seed instead of Jeff's, as his is just a static list and the nodes often appear to be overloaded.
2013-04-13 21:56:15 +02:00
Mike Hearn
42b2cfa3f0
Don't unit test failed decryption message, that's annoying.
2013-04-13 21:54:47 +02:00
Mike Hearn
34b52c95fe
Add a WalletAppKit that wraps boilerplate stuff for setting up a new app. Will convert some example apps later.
2013-04-12 16:20:52 +02:00
Mike Hearn
8fa8a195c1
Transactions: Make some methods public and add a couple of accessor methods.
2013-04-12 16:20:52 +02:00
Mike Hearn
30eb1f8043
DownloadListener: don't print redundant noise after catching up with the chain.
2013-04-12 16:20:52 +02:00
Mike Hearn
dd4d237cd9
Allow modification of the inputs/outputs list.
2013-04-12 11:10:56 +02:00
Mike Hearn
d14ac586d7
Add a few basic sanity checks on transactions received from the network at various points, to avoid syntactically invalid transactions from getting into the system (e.g. no inputs or outputs).
2013-04-12 11:10:48 +02:00
Mike Hearn
21ba7e0260
MemoryPool: Clarify logging a bit.
2013-04-12 11:10:38 +02:00
Mike Hearn
5eebca2c7d
Wallet: Add some convenience methods for spending unconfirmed transactions.
2013-04-12 11:10:31 +02:00
Mike Hearn
f1845dd552
Version 0.9-SNAPSHOT
2013-04-11 14:27:35 +02:00
Mike Hearn
34a6dcb0ae
Refresh README a bit
2013-04-09 15:19:02 +02:00
Mike Hearn
9449897e2d
Fix PingService re-entrancy.
2013-04-09 15:16:04 +02:00
Mike Hearn
d64f555896
Wallet: fix logging of balance in receive() and only calculate the balance once instead of twice.
...
Resolves issue 372.
2013-04-01 18:14:20 +01:00
Mike Hearn
bfd9d81b21
Undo a couple of changes to NetworkParameters to fix the bitcoind comparison tool
2013-04-01 18:08:14 +01:00
Matt Corallo
2a33065e31
Add a bitcoind/bitcoinj testing tool that compares bitcoind's rules
...
...by creating blocks and then comparing their acceptance by
bitcoind to their acceptance by bitcoinj.
2013-04-01 18:05:35 +01:00
Matt Corallo
1f904d28e1
Fix balooning memory usage in FullPrunedBlockChain.
...
This fixes a bug which had been previously solved with a dumb
workaround.
2013-04-01 18:05:01 +01:00
Matt Corallo
2e6e0661cb
Import from new block dir format
...
Also fixes a few minor bugs in BlockImporter.
2013-04-01 18:03:19 +01:00
Matt Corallo
726dd02472
Propogate very old refactor to duplicate code.
2013-04-01 18:02:50 +01:00
Matt Corallo
1b830a10e6
Add comment about using a large fast catchup time in PeerGroup.
2013-04-01 18:02:34 +01:00
Mike Hearn
cb670bdc39
BOBS: Suppress deprecation warning.
2013-04-01 18:02:29 +01:00
Mike Hearn
d92f944564
Peer: Allow peer listeners to handle exceptions thrown in the peer thread.
2013-03-30 19:28:58 +00:00
Mike Hearn
aac6a7daf7
WalletTool: allow dumping the wallet without a chain.
...
Resolves issue 357.
2013-03-30 18:07:20 +00:00
Mike Hearn
11b5ea11b8
WalletProtobufSerializer: throw IllegalArgumentException if tx cannot be connected.
2013-03-30 18:06:40 +00:00
Mike Hearn
9201cba0cc
Wallet: try deleting the temp file in the finally block and print a warning if it succeeded.
...
Resolves issue 362.
2013-03-30 17:35:57 +00:00
Mike Hearn
301db707b1
Wallet: misc comment updates
2013-03-30 17:35:07 +00:00
Mike Hearn
49d26ad773
WalletProtobufSerializer: Add a couple of NPE checks
2013-03-30 17:34:30 +00:00
Mike Hearn
7307308915
WalletProtobufSerializer: Clear txMap after reading.
...
Resolves issue 380.
2013-03-30 17:23:34 +00:00
Mike Hearn
616b4a5a7d
PeerGroup: make selectDownloadPeer non static so users can override it and control selection behaviour.
2013-03-29 18:26:40 +00:00
Mike Hearn
9e870f40bf
DnsDiscovery: Rewrite to use better abstractions and remove some arbitrary magic numbers.
...
Resolves issue 346.
2013-03-29 18:18:45 +00:00
Mike Hearn
08dbb21a39
H2 store: Set a 60 second locking timeout to avoid failures when processing large/complex operations.
...
Resolves issue 348.
2013-03-29 18:00:46 +00:00
Mike Hearn
a78b53c5aa
AbstractBlockChain: Fix median timestamp calculation.
...
Resolves issue 370.
2013-03-29 17:56:28 +00:00
Mike Hearn
3d6691c82a
Switch to using DNS for testnet discovery, as LFnet has gone away.
...
Put DNS seeds into NetworkParams.
Deprecate IrcDiscovery and remove the unit tests for it.
Update examples and tools to use DNS for everything.
Resolves issue 299.
2013-03-29 17:39:24 +00:00
Mike Hearn
41ce887652
Fix TCPNetworkConnection.connectTo() which broke during a previous re-factor. It's not often used so it wasn't noticed.
2013-03-29 17:34:23 +00:00
Mike Hearn
89d45b638f
WalletTest: Remove temp code that snuck in to the tests accidentally.
2013-03-29 17:21:38 +00:00
Mike Hearn
89079fd8d4
WalletTest: Heterogeneous is hard to spel corectly :) Also it's probably unfamiliar to non native speakers. Replace it with the simpler word "mixed".
2013-03-29 17:07:22 +00:00
Mike Hearn
4273dacc00
Check that the private key decrypted correctly in ECKey.sign(). Resolves issue 359.
2013-03-29 17:05:39 +00:00
Mike Hearn
7b8eab19ff
Use a bit of Guava for unsigned longs. Resolves issue 367.
2013-03-29 16:41:28 +00:00
Mike Hearn
4f1c7f4816
Throw BlockStoreException not NullPointerException when chain head cannot be found in SPVBlockStore. Resolves issue 374.
2013-03-27 17:57:00 +01:00
Mike Hearn
3c6f435fde
More changes/simplifications to PeerGroup locking.
2013-03-27 17:44:51 +01:00
Mike Hearn
61c8c07468
Make wallet description private. Resolves issue 368.
2013-03-27 11:57:29 +01:00
Mike Hearn
8e0c72597c
Add JSR305 annotations. Bump Guava version. Resolves issue 347.
2013-03-21 17:19:36 +01:00
Mike Hearn
df257e8589
Don't dump entire block to log when a split happens.
2013-03-21 16:42:34 +01:00
Mike Hearn
dd5e6f7151
Bump to newer SLF4J
2013-03-21 16:42:23 +01:00