File clam.changes of Package clam
-------------------------------------------------------------------
Thu Sep 24 16:37:30 UTC 2015 - marec@detebe.org
- Update to version 1.4.17:
* bump versions
* Fix #226. Don't crash when someone else stakes and sends the reward to us and creditstakestoaccounts=1 is set.
* Remove the 'weight' column from the coin control dialog. Weight is the same as 'amount' for staking coins.
* Fix case in documentation.
* Use <clamaddress> for address parameters, for consistency.
* Edit comment.
* Extend createrawtransaction to accept 'locktime' in the output JSON. Make the 'count' optional. Make locktime address scripts standard.
* Add 'deleteprivkey' RPC command.
-------------------------------------------------------------------
Fri Jul 31 08:44:00 UTC 2015 - marec@detebe.org
- Update to version 1.4.16:
* Bump version to 1.4.16.
* Add RCP commands 'setstaketo' and 'setrewardto' to allow changing the -staketo and -rewardto settings without having to restart the client.
* Add seed.clams.xyz as a seed.
* Use sipa's bitcoin-seeder to produce dynamic list of active peers.
* Bump copyright year.
* Add '-rewardto' flag, to let us send just the block reward to a different address when we stake.
* Bump version to 1.4.15.
* Revert previous attempt to fix Windows RPC error. This should fix it.
* Add in space to Content length for windows rpc fix
* Add --help text for -staketo.
* Add -staketo flag to allow us to move coins from one address to another while staking.
-------------------------------------------------------------------
Sat Jul 25 09:57:45 UTC 2015 - marec@detebe.org
- Update to version 1.4.15:
* Bump version to 1.4.15.
* Revert previous attempt to fix Windows RPC error. This should fix it.
* Add in space to Content length for windows rpc fix
* Updates to peer list
* Add --help text for -staketo.
* Add -staketo flag to allow us to move coins from one address to another while staking.
* Ban forked peers who are stuck in a getblocks loop. Merged from https://github.com/almightyruler/cloudcoin/commit/fdecc06a54600c4de0be6b683fdaa90dc194da79
* Bump version to 1.4.14.
* Implement #200 - add -stake=<addr> option to limit staking to just the specified address(es).
-------------------------------------------------------------------
Mon Jul 6 20:28:46 UTC 2015 - marec@detebe.org
- Update to version 1.4.14:
* Bump version to 1.4.14.
* Implement #200 - add -stake=<addr> option to limit staking to just the specified address(es).
* It's about time we had a new checkpoint.
* Add a comment. It took me a while to understand how -connect prevented connections to other peers.
* Add optional 3rd parameter to 'dumpbootstrap' to specify the first block number to dump.
* Bump version to 1.4.13.
* Add 'raw' parameter to 'getblock' and 'getblockbynumber' to allow dumping of raw block data suitable for use with 'submitblock'.
* Specifying '[]' for the address list in 'listunspent' is the same as not specifying an address list, and allows us to set mature=0 without filtering.
* Add -combineany flag to allow staking to merge any small outputs together regardless of their address.
-------------------------------------------------------------------
Thu Jun 25 16:49:11 UTC 2015 - marec@detebe.org
- Update to version 1.4.13:
* Bump version to 1.4.13.
* Add 'raw' parameter to 'getblock' and 'getblockbynumber' to allow dumping of raw block data suitable for use with 'submitblock'.
* Specifying '[]' for the address list in 'listunspent' is the same as not specifying an address list, and allows us to set mature=0 without filtering.
* Add -combineany flag to allow staking to merge any small outputs together regardless of their address.
* Always show 'scriptPubKey' in 'validateoutputs' output, even for spent outputs.
* Bump version to 1.4.12.
* Use all available private keys and p2sh scripts, rather than either using the ones in the wallet OR the ones in the RPC command.
* When picking the 500 outputs to spend, spend the smallest ones not the biggest ones.
* Changed Bitcoin references to Clam
-------------------------------------------------------------------
Sat May 16 20:28:11 UTC 2015 - marec@detebe.org
- Update to version 1.4.11:
* Bump version to 1.4.11.
* Add the ability to specify multiple split outputs in 'sendtoaddress' and 'sendfrom' RPC calls.
* Don't keep dividing our staking weight by COIN. Fixes #188.
* Change new flag name to -creditstakestoaccounts. Check that addresses are still in address book before using their account name.
* New flag -creditstakeaddressaccounts to say whether to credit staking rewards to the account to which the staking output belongs (=1) or to the "" account (=0, default).
* Add -stakenotify flag to run a command each time we stake.
* rebranding: bitcoind > clamd
-------------------------------------------------------------------
Wed Feb 25 13:23:34 UTC 2015 - marec@detebe.org
- Update to version 1.4.10:
* Bump version to 1.4.10.
* Allow decimal "money" amounts for money-valued config variables. Previously it was ignoring the fractional parts.
* Allow specification of the combine threshold via -combinelimit=N instead of having it hardcoded.
* Change coin-combine logic a little. Add on the reward before deciding whether to combine, so we know what we're looking at. And don't exceed the combine threshold when adding in new outputs.
* Fix split-on-stake logic. Currently it's deciding whether to split based on age, but then actually splitting based on size if -splitsize is set.
* Add documentation for creating multiple duplicate outputs using createrawtransaction.
* Allow JSON objects like {"count":2,"amount":1.3} in createrawtransaction to create multiple identical outputs.
* Truncate CLAMspeech to 140 characters. Include it in raw transactions too.
* Less debug for setspeech.
-------------------------------------------------------------------
Fri Feb 20 12:01:30 UTC 2015 - marec@detebe.org
- Update to version 1.4.9:
* Bump version to 1.4.9.
* More debugging. Log why coin selection fails when attempting to spend coins. Also log when sendtoaddress fails like this: CWallet::SendMoneyToDestination failed: value (99.99991) + fee (0.0001) = 100.00001 > balance (100.00)
* Have the stake-caching be less verbose, and add debug when CreateTransaction() fails.
* Only show the staking debug output if debug=stake is specified.
* Add debug for staking.
* Bump version to v1.4.8.
* Log how long it takes to search for staking opportunities.
* Speed up staking by caching transaction ID hashes.
* Disconnect from v1.4.4.
* Add -change option to specify address(es) to send change to.
-------------------------------------------------------------------
Wed Feb 18 22:24:57 UTC 2015 - marec@detebe.org
- Update to version 1.4.8:
* Bump version to v1.4.8.
* Log how long it takes to search for staking opportunities.
* Speed up staking by caching transaction ID hashes.
* Disconnect from v1.4.4.
* Maintain a map storing the amount staked by each address so that 'getstakedbyaddress' doesn't have to iterate through the whole wallet each time.
* Some transactions pay to the same address hundreds of times. We don't want to re-write the transaction to disk for every output in the transaction. https://github.com/nochowderforyou/clams/issues/156
* Remove some files from source control that are generated by autogen.sh
* Add -change option to specify address(es) to send change to.
-------------------------------------------------------------------
Tue Feb 10 20:10:44 UTC 2015 - marec@detebe.org
- initial package build