novacoin.git
10 years agoAdd scrypt+sha512 key derivation method.
alex [Fri, 23 Aug 2013 21:56:49 +0000]
Add scrypt+sha512 key derivation method.

Disabled by default. You can use -derivationmethod option to choose which method will be used for wallet encryption keys generation.

Possible values:

* sha512 - default, compatible with bitcoin;
* scrypt+sha512 - selects scrypt derivation function.

Please note that this option only allows you to select default method. If you are already using encrypted wallet then suitable derivation method will be selected automatically.

10 years agoRename scrypt_mine.(cpp|h) to scrypt.(cpp|h)
alex [Fri, 23 Aug 2013 18:34:03 +0000]
Rename scrypt_mine.(cpp|h) to scrypt.(cpp|h)

10 years agoCleanup
alex [Fri, 23 Aug 2013 18:21:00 +0000]
Cleanup

10 years agoMinor optimization in PoS kernel: call scrypt_blockhash once time instead of multiple...
alex [Fri, 23 Aug 2013 17:59:27 +0000]
Minor optimization in PoS kernel: call scrypt_blockhash once time instead of multiple times

10 years agoScrypt hashing implementation update
alex [Fri, 23 Aug 2013 16:23:30 +0000]
Scrypt hashing implementation update

* block_header structure removed;
* srypt_hash splitted in scrypt_hash(data, datalen) and scrypt_blockhash(data).

10 years agoRename BitcoinMiner() function to StakeMiner(), remove some regacy code.
alex [Thu, 22 Aug 2013 19:23:08 +0000]
Rename BitcoinMiner() function to StakeMiner(), remove some regacy code.

10 years agoSet correct name for boost IPC
alex [Thu, 22 Aug 2013 18:31:44 +0000]
Set correct name for boost IPC

10 years agoStake generation changes
alex [Wed, 21 Aug 2013 20:08:00 +0000]
Stake generation changes

1) Remove stakes verification code from CheckWork() function, create separate CheckStake() function.
2) Add -stakepooledkeys option, which allows user to get keys for the last coinstake output from keypool. This feature disabled by default.

10 years agoBump version v0.4.4.2-nvc
alex [Tue, 20 Aug 2013 07:53:09 +0000]
Bump version

10 years agoRemove the LOCKS_SWITCH_TIME conditions
alex [Tue, 20 Aug 2013 07:35:38 +0000]
Remove the LOCKS_SWITCH_TIME conditions

10 years agoDo not display sync-checkpoint related warnings if -nosynccheckpoints option is set.
alex [Mon, 19 Aug 2013 22:05:14 +0000]
Do not display sync-checkpoint related warnings if -nosynccheckpoints option is set.

10 years agoUpdate block checkings
alex [Mon, 19 Aug 2013 21:49:44 +0000]
Update block checkings

* Checkpoints list updated, removed some legacy checkpoints and added the new one
* Stake modifier checkpoint added
* ComputeMinWork/ComputeMinStake functions

10 years agoRPC: optional size parameter for keypoolrefill
alex [Sun, 18 Aug 2013 17:00:35 +0000]
RPC: optional size parameter for keypoolrefill

Users are now permitted to increase the keypool size at runtime.

10 years agoMerge pull request #5 from awoland/master
Balthazar [Sun, 18 Aug 2013 16:46:39 +0000]
Merge pull request #5 from awoland/master

10 years agoP2SH related RPC improvements
alex [Sun, 18 Aug 2013 16:13:38 +0000]
P2SH related RPC improvements

* New addredeemscript and decodescript RPC calls
* validateaddress now provides redeem script

10 years agoBUGFIX: Move boost/version.hpp include from db.cpp to walletdb.cpp where BOOST_VERSIO...
alex [Sun, 18 Aug 2013 14:25:08 +0000]
BUGFIX: Move boost/version.hpp include from db.cpp to walletdb.cpp where BOOST_VERSION is used.

10 years agoRemove asserts
alex [Sun, 18 Aug 2013 14:12:33 +0000]
Remove asserts

10 years agoDo not return addresses onder than specified lifespan.
alex [Sun, 18 Aug 2013 14:08:47 +0000]
Do not return addresses onder than specified lifespan.

-addrlifespan is 7 days by default.

10 years agoOptimization: disable block signature varification during initial block index checking,
alex [Sun, 18 Aug 2013 00:13:48 +0000]
Optimization: disable block signature varification during initial block index checking,
by default. It's still could be enabled using -checklevel=7 option. It's safe because signature checked it ProcessBlock() already.

10 years agoUpdate getmininginfo
alex [Sat, 17 Aug 2013 20:44:39 +0000]
Update getmininginfo

* More correct DayWeight calculation for local stakes
* Network stake weight calculation precision improvement
* Passive weight isn't calculated anymore

10 years agoRestore testnet genesis block
alex [Fri, 16 Aug 2013 21:56:44 +0000]
Restore testnet genesis block

10 years agoMinor optimization
alex [Fri, 16 Aug 2013 21:46:30 +0000]
Minor optimization

* Timestamp field added into checkpoints table
* Skip header signature checking while connecting block (it's safe because ProcessBlock still performs signatures checking)
* Skip PoW header ECDSA signatures validation since block #9689 until last checkpoint

10 years agoResources update v0.4.4.1-nvc
alex [Thu, 15 Aug 2013 20:47:09 +0000]
Resources update

Add translation for sync checkpoints option

10 years agoUpdate DNS seed option description
alex [Thu, 15 Aug 2013 20:43:47 +0000]
Update DNS seed option description

10 years agoBump version to 0.4.4.1
alex [Thu, 15 Aug 2013 20:41:05 +0000]
Bump version to 0.4.4.1

10 years agoEnable DNS seeding
alex [Wed, 14 Aug 2013 09:02:57 +0000]
Enable DNS seeding

10 years agoFix TimeWeight calculation
alex [Tue, 13 Aug 2013 18:29:05 +0000]
Fix TimeWeight calculation

TimeWeight is currently limited to 60 days due to inaccurracy. This will be corrected since 01 Jan 2014.

10 years agonTimeWeight calculation issue
alexhz [Sun, 11 Aug 2013 20:57:03 +0000]
nTimeWeight calculation issue

Originally it was planned to start nTimeWeight calculation from zero at the 30-day min age. This should increase
active coins participating the hash and help to secure the network when proof-of-stake difficulty is low.

Anyway, this feature is disabled for now and needs some discussion.

10 years agoUpdate notificator.cpp
awoland [Tue, 6 Aug 2013 17:02:40 +0000]
Update notificator.cpp

This simply patch fix build error in notificator.cpp:116
¨const uint32_t *data = reinterpret_cast<const uint32_t*>(tmp.constBits());¨ => ¨const uint32_t *data = reinterpret_cast<const uint32_t*>(tmp.bits());¨

10 years agoUpdate readme files v0.4.4-nvc
alex [Sat, 3 Aug 2013 21:32:53 +0000]
Update readme files

Set actual version and add description about the coinstake reward limit.

10 years agoSet correct prefix for URI
alex [Sat, 3 Aug 2013 20:07:16 +0000]
Set correct prefix for URI

This sets the novacoin:// prefix for URI handling and QR Code generation

10 years agoAdd debug message
alex [Sat, 3 Aug 2013 19:54:23 +0000]
Add debug message

Print out the reward truncation message if -princreation and -debug flags are set.

10 years agoAdd upper limit for coinstake reward
alexhz [Fri, 2 Aug 2013 12:57:58 +0000]
Add upper limit for coinstake reward

Such limit should stimulate large stake holders to use smaller inputs. This will ensure the growth of the difficulty and chain's strength.

10 years agoRemove legacy block schema version checking
alex [Thu, 1 Aug 2013 18:14:01 +0000]
Remove legacy block schema version checking

10 years agoRe-format some error messages
alex [Wed, 31 Jul 2013 22:35:09 +0000]
Re-format some error messages

10 years agoExtend coinstake reward verification error message
alex [Wed, 31 Jul 2013 22:24:13 +0000]
Extend coinstake reward verification error message

10 years agoTreat non-empty coinbase in PoS blocks as DoS attempt
alex [Wed, 31 Jul 2013 22:13:11 +0000]
Treat non-empty coinbase in PoS blocks as DoS attempt

10 years agoRemove static flag
alex [Tue, 30 Jul 2013 17:45:25 +0000]
Remove static flag

10 years agoIncrease block schema version
alex [Tue, 30 Jul 2013 17:00:23 +0000]
Increase block schema version

10 years agoFix message
alex [Tue, 30 Jul 2013 16:27:52 +0000]
Fix message

10 years agoBump version numbers
alex [Tue, 30 Jul 2013 16:21:18 +0000]
Bump version numbers

10 years agoRemove CPU miner related code
alex [Tue, 30 Jul 2013 16:13:55 +0000]
Remove CPU miner related code

10 years agoBUGFIX: prevent Qt client crash at startup with an empty directory
alex [Mon, 29 Jul 2013 23:30:46 +0000]
BUGFIX: prevent Qt client crash at startup with an empty directory

10 years agoAdd -walletnotify option
alex [Mon, 29 Jul 2013 23:21:32 +0000]
Add -walletnotify option

This option provides an opportunity to call external script on new transactions

10 years agoAdd timeoffset to getinfo output
alex [Mon, 29 Jul 2013 23:10:39 +0000]
Add timeoffset to getinfo output

10 years agoAdd "Copy transaction ID" feature
alex [Mon, 29 Jul 2013 22:59:59 +0000]
Add "Copy transaction ID" feature

10 years agoAddress in listunspent
alex [Mon, 29 Jul 2013 22:23:57 +0000]
Address in listunspent

10 years agoFix getbalance
alex [Mon, 29 Jul 2013 22:20:31 +0000]
Fix getbalance

10 years agoUse uint256 instead of CBigNum for ChainTrust
alex [Mon, 29 Jul 2013 22:12:14 +0000]
Use uint256 instead of CBigNum for ChainTrust

10 years agoDon't announce non-peer CNodes v0.4.4-pre
alex [Mon, 29 Jul 2013 00:10:56 +0000]
Don't announce non-peer CNodes

10 years agoBUGFIX: SignCompact/SignCompactSignature memory leak
alex [Sun, 28 Jul 2013 23:25:22 +0000]
BUGFIX: SignCompact/SignCompactSignature memory leak

10 years agoBUGFIX: Don't try to resize vector to negative size.
alex [Sun, 28 Jul 2013 23:18:17 +0000]
BUGFIX: Don't try to resize vector to negative size.

10 years agoKey metadata update + new timestamp conversion function
alex [Sun, 28 Jul 2013 23:07:03 +0000]
Key metadata update + new timestamp conversion function

10 years agoAdd wallet dump functionality and key creation timestamps
alex [Sun, 28 Jul 2013 18:45:12 +0000]
Add wallet dump functionality and key creation timestamps

10 years agoAllow user to select wallet file (-waller=walletfilename.dat)
alex [Sun, 28 Jul 2013 16:29:39 +0000]
Allow user to select wallet file (-waller=walletfilename.dat)

10 years agoDump addresses every 600s
alex [Sat, 27 Jul 2013 22:55:13 +0000]
Dump addresses every 600s

10 years agoFix for invalid conversion issue on Win32
alex [Sat, 27 Jul 2013 22:32:31 +0000]
Fix for invalid conversion issue on Win32

10 years agoComment fix
alex [Sat, 27 Jul 2013 22:27:46 +0000]
Comment fix

10 years agoAdd PoS ROI curve switch since 20 Oct 2013
alex [Sat, 27 Jul 2013 22:25:03 +0000]
Add PoS ROI curve switch since 20 Oct 2013

10 years agoSet inline modifier for some functions
alex [Sat, 27 Jul 2013 22:16:00 +0000]
Set inline modifier for some functions

10 years agoUse last block time instead of current time for getmininginfo
alex [Sat, 27 Jul 2013 18:40:21 +0000]
Use last block time instead of current time for getmininginfo

10 years agoAdd getbestblockhash RPC call support
alex [Sat, 27 Jul 2013 18:38:08 +0000]
Add getbestblockhash RPC call support

10 years agoImprove getmininginfo
alexhz [Sat, 6 Jul 2013 16:20:55 +0000]
Improve getmininginfo

10 years agoFix integer division-related issue in stake rewards calculation
alex [Sat, 29 Jun 2013 13:14:36 +0000]
Fix integer division-related issue in stake rewards calculation

10 years agoAdd current PoW reward and stake interest into getmininginfo result
alex [Sat, 29 Jun 2013 13:12:05 +0000]
Add current PoW reward and stake interest into getmininginfo result

10 years agoEnable DB_LOG_IN_MEMORY flag
alex [Sat, 29 Jun 2013 11:14:03 +0000]
Enable DB_LOG_IN_MEMORY flag

10 years agoEnable DB_LOG_AUTO_REMOVE flag
alex [Sat, 29 Jun 2013 09:59:19 +0000]
Enable DB_LOG_AUTO_REMOVE flag

10 years agoModify PoW trust score calculation
alex [Sat, 29 Jun 2013 09:54:36 +0000]
Modify PoW trust score calculation

10 years agoFix local stake weight calculation v0.4.3-nvc-f
alexhz [Thu, 20 Jun 2013 18:52:58 +0000]
Fix local stake weight calculation

10 years agoFix memory exhaustion v0.4.3-nvc
alexhz [Thu, 20 Jun 2013 17:00:45 +0000]
Fix memory exhaustion

10 years agoAdd checkpoint at block #24451
alexhz [Thu, 20 Jun 2013 00:33:07 +0000]
Add checkpoint at block #24451

10 years agoSet correct stake spacing
alexhz [Wed, 19 Jun 2013 21:14:40 +0000]
Set correct stake spacing

10 years agoAdd network PoW speed and Stake weight estimation into getmininginfo
alexhz [Wed, 19 Jun 2013 21:05:07 +0000]
Add network PoW speed and Stake weight estimation into getmininginfo

10 years agoIncrease version
alex [Sat, 15 Jun 2013 16:58:45 +0000]
Increase version

10 years agoFix trust score calculation segfault on testNet v0.4.3-pre
alex [Sat, 15 Jun 2013 16:48:21 +0000]
Fix trust score calculation segfault on testNet

10 years agoSwitch stakepower to available coin*age instead of spent coin*age
alex [Sat, 15 Jun 2013 16:39:34 +0000]
Switch stakepower to available coin*age instead of spent coin*age

10 years agoAdd stakepower into getmininginfo output (EXPERIMENTAL)
alex [Sat, 15 Jun 2013 16:24:16 +0000]
Add stakepower into getmininginfo output (EXPERIMENTAL)

10 years agoRemove PoW-miner related code
alex [Sat, 15 Jun 2013 15:48:29 +0000]
Remove PoW-miner related code

10 years agoRemove PoW-miner related RPC calls
alex [Sat, 15 Jun 2013 15:36:37 +0000]
Remove PoW-miner related RPC calls

10 years agoAdd checkpoints
alex [Sat, 15 Jun 2013 15:31:32 +0000]
Add checkpoints

10 years agoRemove MINOUT checkings for coinbase transactions since 20 Sep 2013
alex [Sat, 15 Jun 2013 15:19:52 +0000]
Remove MINOUT checkings for coinbase transactions since 20 Sep 2013

10 years agoStake checkings refactoring
alex [Sat, 15 Jun 2013 14:39:08 +0000]
Stake checkings refactoring

10 years agoRemove PoW CPU miner
alex [Sat, 15 Jun 2013 14:20:26 +0000]
Remove PoW CPU miner

10 years agoRemove PoW block signature from RPC also
alex [Sat, 15 Jun 2013 13:38:05 +0000]
Remove PoW block signature from RPC also

10 years agoRemove PoW block signature from RPC also
alex [Sat, 15 Jun 2013 13:34:23 +0000]
Remove PoW block signature from RPC also

10 years agoRemove block signature for proof-of-work blocks since 20 Sep 2013
alex [Sat, 15 Jun 2013 13:32:01 +0000]
Remove block signature for proof-of-work blocks since 20 Sep 2013

10 years agoAdd trust score calculation switch at 20 Sep 2013
alex [Sat, 15 Jun 2013 12:55:53 +0000]
Add trust score calculation switch at 20 Sep 2013

10 years agolocks exhaustion fix v0.4.2-nvc
alex [Sun, 19 May 2013 19:04:01 +0000]
locks exhaustion fix

10 years agofix readme
alex [Sun, 19 May 2013 18:26:03 +0000]
fix readme

10 years agofix readme
alex [Sun, 19 May 2013 18:23:57 +0000]
fix readme

10 years agoupdate to 0.4.2
alex [Sun, 19 May 2013 18:22:30 +0000]
update to 0.4.2

10 years agofix
Alex [Sat, 11 May 2013 01:21:28 +0000]
fix

10 years agofix
Alex [Fri, 10 May 2013 20:03:23 +0000]
fix

10 years agoupdate to 0.4.1 v0.4.1-nvc
alex [Fri, 10 May 2013 20:30:54 +0000]
update to 0.4.1

11 years agoTranslation update v0.4.0-nvc
alex [Fri, 19 Apr 2013 23:06:25 +0000]
Translation update

11 years agoHide debug info
alex [Fri, 19 Apr 2013 23:04:05 +0000]
Hide debug info

11 years agoHide debug info
alex [Fri, 19 Apr 2013 22:58:57 +0000]
Hide debug info

11 years agocache Stake value
alex [Fri, 19 Apr 2013 21:05:23 +0000]
cache Stake value

11 years agoFix balanceChanged event error
alex [Fri, 19 Apr 2013 20:05:48 +0000]
Fix balanceChanged event error

11 years agoAdd missing RPC calls
alexhz [Tue, 16 Apr 2013 20:55:03 +0000]
Add missing RPC calls