novacoin.git
12 years agoUse standard C99 (and Qt) types for 64-bit integers
Luke Dashjr [Tue, 20 Dec 2011 21:52:59 +0000]
Use standard C99 (and Qt) types for 64-bit integers

12 years agoMerge pull request #677 from luke-jr/minfee_modes
Gavin Andresen [Tue, 20 Dec 2011 21:09:18 +0000]
Merge pull request #677 from luke-jr/minfee_modes

API: GetMinFee modes

12 years agoMerge branch 'op_eval'
Gavin Andresen [Tue, 20 Dec 2011 19:43:31 +0000]
Merge branch 'op_eval'

12 years agoMerge pull request #717 from TheBlueMatt/installerqtupgrade
Gavin Andresen [Tue, 20 Dec 2011 19:42:53 +0000]
Merge pull request #717 from TheBlueMatt/installerqtupgrade

Implement "Start on window system startup" on Win32 + Linux.

12 years agoImplement "Start on window system startup" on Win32 + Linux.
Matt Corallo [Mon, 19 Dec 2011 23:49:07 +0000]
Implement "Start on window system startup" on Win32 + Linux.

12 years agoinclude util.h to get SecureString definition.
Gavin Andresen [Tue, 20 Dec 2011 17:21:47 +0000]
include util.h to get SecureString definition.

12 years agoInclude limits, not climints (using std::numeric_limits now)
Gavin Andresen [Tue, 20 Dec 2011 17:04:33 +0000]
Include limits, not climints (using std::numeric_limits now)

12 years agoMerge pull request #673 from mndrix/less-time-data
Gavin Andresen [Tue, 20 Dec 2011 16:55:55 +0000]
Merge pull request #673 from mndrix/less-time-data

Store fewer time samples

12 years agoMerge pull request #716 from gavinandresen/cleanup
Gavin Andresen [Tue, 20 Dec 2011 16:52:22 +0000]
Merge pull request #716 from gavinandresen/cleanup

Cleanups suggested by genjix

12 years agoCode cleanup: use ECDSA_size() instead of fixed 10,000 byte sig buffer, and explicity...
Gavin Andresen [Tue, 20 Dec 2011 00:04:47 +0000]
Code cleanup: use ECDSA_size() instead of fixed 10,000 byte sig buffer, and explicity init static var

12 years agoUse std::numeric_limits<> for typesafe INT_MAX/etc
Gavin Andresen [Mon, 19 Dec 2011 22:08:25 +0000]
Use std::numeric_limits<> for typesafe INT_MAX/etc

12 years agoCleanup: removed dead code, and use C99 typedefs for int64 (supported by all modern...
Gavin Andresen [Mon, 19 Dec 2011 21:27:15 +0000]
Cleanup: removed dead code, and use C99 typedefs for int64 (supported by all modern c++ compilers)

12 years agoMerge pull request #690 from runeksvendsen/qt-cmdline-options-parsing
Gavin Andresen [Mon, 19 Dec 2011 20:23:00 +0000]
Merge pull request #690 from runeksvendsen/qt-cmdline-options-parsing

When using Qt GUI, move parameter-parsing to start of qt/bitcoin.cpp:main()

12 years agoMerge branch 'txn_block_info' of https://github.com/luke-jr/bitcoin
Gavin Andresen [Mon, 19 Dec 2011 20:14:22 +0000]
Merge branch 'txn_block_info' of https://github.com/luke-jr/bitcoin

12 years agoUpdate bitcoin address numbers for latest luke-jr/sipa scheme
Gavin Andresen [Fri, 16 Dec 2011 23:03:48 +0000]
Update bitcoin address numbers for latest luke-jr/sipa scheme

12 years agoFix logic for IsChange() for send-to-self transactions.
Gavin Andresen [Mon, 5 Dec 2011 15:32:35 +0000]
Fix logic for IsChange() for send-to-self transactions.

12 years agoUse block times for 'hard' OP_EVAL switchover, and refactored EvalScript
Gavin Andresen [Tue, 8 Nov 2011 18:20:29 +0000]
Use block times for 'hard' OP_EVAL switchover, and refactored EvalScript
so it takes a flag for how to interpret OP_EVAL.
Also increased IsStandard size of scriptSigs to 500 bytes, so
a 3-of-3 multisig transaction IsStandard.

12 years agoInterpret OP_EVAL as OP_NOP until Feb 1, 2012
Gavin Andresen [Fri, 21 Oct 2011 17:12:05 +0000]
Interpret OP_EVAL as OP_NOP until Feb 1, 2012

12 years agoDisable addmultisigaddress if not testnet
Gavin Andresen [Wed, 19 Oct 2011 13:50:15 +0000]
Disable addmultisigaddress if not testnet

12 years agoPut OP_EVAL string in coinbase of generated blocks
Gavin Andresen [Thu, 13 Oct 2011 20:03:58 +0000]
Put OP_EVAL string in coinbase of generated blocks

12 years agoadd key.o and rpcdump.o to makefile.linux-mingw
Pieter Wuille [Mon, 19 Dec 2011 18:20:53 +0000]
add key.o and rpcdump.o to makefile.linux-mingw

12 years agoOP_EVAL implementation
Gavin Andresen [Mon, 3 Oct 2011 17:05:43 +0000]
OP_EVAL implementation

OP_EVAL is a new opcode that evaluates an item on the stack as a script.
It enables a new type of bitcoin address that needs an arbitrarily
complex script to redeem.

12 years agoGlobal fixture to send output to console instead of debug.log
Gavin Andresen [Mon, 3 Oct 2011 20:14:13 +0000]
Global fixture to send output to console instead of debug.log

12 years agoSupport 3 new multisignature IsStandard transactions
Gavin Andresen [Wed, 28 Sep 2011 16:30:06 +0000]
Support 3 new multisignature IsStandard transactions

Initial support for (a and b), (a or b), and 2-of-3 escrow
transactions (where a, b, and c are keys).

12 years agoRework unit tests so test_bitcoin.cpp does not #include them all
Gavin Andresen [Tue, 11 Oct 2011 23:50:06 +0000]
Rework unit tests so test_bitcoin.cpp does not #include them all

12 years agoCollapse no-op ExtractAddress/ExtractAddressInner
Gavin Andresen [Thu, 29 Sep 2011 13:46:52 +0000]
Collapse no-op ExtractAddress/ExtractAddressInner

12 years agoMerge pull request #574 from sipa/dumpprivkey
Gavin Andresen [Mon, 19 Dec 2011 15:27:25 +0000]
Merge pull request #574 from sipa/dumpprivkey

Dumpprivkey

12 years agoMerge pull request #699 from laanwj/about_qt
Gavin Andresen [Mon, 19 Dec 2011 15:26:14 +0000]
Merge pull request #699 from laanwj/about_qt

Add "About Qt" menu option to show built-in Qt About dialog

12 years agoMerge pull request #707 from gavinandresen/BIP14
Gavin Andresen [Mon, 19 Dec 2011 15:25:16 +0000]
Merge pull request #707 from gavinandresen/BIP14

Implement BIP 14 : separate protocol version from client version

12 years agoImplement BIP 14 : separate protocol version from client version
Gavin Andresen [Fri, 16 Dec 2011 21:26:14 +0000]
Implement BIP 14 : separate protocol version from client version

12 years agoMerge pull request #709 from luke-jr/newdnsseeds
Gavin Andresen [Mon, 19 Dec 2011 15:12:30 +0000]
Merge pull request #709 from luke-jr/newdnsseeds

New DNS seeds

12 years agoKey import and export
Pieter Wuille [Wed, 13 Jul 2011 09:56:38 +0000]
Key import and export

Introduces two new RPC calls:
* dumpprivkey: retrieve the private key corresponding to an address
* importprivkey: add a private key to your wallet

The private key format is analoguous to the address format. It is
a 51-character base58-encoded string, that includes a version number
and a checksum.

Includes patch by mhanne:
* add optional account parameter for importprivkey, if omitted use default

12 years agoPreparations for key import/export
Pieter Wuille [Mon, 11 Jul 2011 19:49:45 +0000]
Preparations for key import/export

12 years agoCBitcoinSecret added (base58 encoded privkey)
Pieter Wuille [Mon, 11 Jul 2011 19:48:09 +0000]
CBitcoinSecret added (base58 encoded privkey)

12 years agoAdd GetSecret() and GetKeys() to CKeyStore
Pieter Wuille [Mon, 11 Jul 2011 19:30:40 +0000]
Add GetSecret() and GetKeys() to CKeyStore

12 years agoMake CWalletTx::pwallet private
Pieter Wuille [Tue, 28 Jun 2011 21:45:22 +0000]
Make CWalletTx::pwallet private

12 years agoAdd blockhash and blockindex to transaction info
Luke Dashjr [Fri, 27 May 2011 04:05:16 +0000]
Add blockhash and blockindex to transaction info

12 years agoAdd my DNS seed domain
Luke Dashjr [Fri, 16 Dec 2011 23:34:47 +0000]
Add my DNS seed domain

12 years agoMerge pull request #704 from TheBlueMatt/master
Gavin Andresen [Fri, 16 Dec 2011 22:19:32 +0000]
Merge pull request #704 from TheBlueMatt/master

Update debian changelog to 0.5.1.

12 years agoMerge pull request #706 from TheBlueMatt/gitian
Gavin Andresen [Fri, 16 Dec 2011 22:15:28 +0000]
Merge pull request #706 from TheBlueMatt/gitian

Add laanwj to gitian download scripts.

12 years agoMove more newlines out of strings, and fix translations.
Gavin Andresen [Fri, 16 Dec 2011 22:13:45 +0000]
Move more newlines out of strings, and fix translations.

12 years agoMerge branch 'fix-help-translations' of https://github.com/tcatm/bitcoin
Gavin Andresen [Fri, 16 Dec 2011 21:37:24 +0000]
Merge branch 'fix-help-translations' of https://github.com/tcatm/bitcoin

12 years agoAdd laanwj to gitian download scripts.
Matt Corallo [Fri, 16 Dec 2011 20:04:43 +0000]
Add laanwj to gitian download scripts.

12 years agoUpdate debian changelog to 0.5.1.
Matt Corallo [Fri, 16 Dec 2011 18:27:52 +0000]
Update debian changelog to 0.5.1.

12 years agoBump version 0.5.99 (prep for pulling for version 0.6)
Gavin Andresen [Fri, 16 Dec 2011 17:31:59 +0000]
Bump version 0.5.99 (prep for pulling for version 0.6)

12 years agoAdd sipa's new dnsseed.
Matt Corallo [Fri, 16 Dec 2011 16:30:36 +0000]
Add sipa's new dnsseed.

12 years agoGetMinFee takes a mode parameter (GMF_{BLOCK,RELAY,SEND}) instead of fForRelay
Luke Dashjr [Mon, 3 Oct 2011 16:55:47 +0000]
GetMinFee takes a mode parameter (GMF_{BLOCK,RELAY,SEND}) instead of fForRelay

12 years agoBugfix: fForRelay should be false when deciding required fee to include in blocks
Luke Dashjr [Wed, 14 Dec 2011 06:03:55 +0000]
Bugfix: fForRelay should be false when deciding required fee to include in blocks

During the rushed transition from 0.01 BTC to 0.0005 BTC fees, we took the
approach of dropping the relay and block-inclusion fee to 0.0005 BTC
immediately, and only delayed adjusting the sending fee for the next release.
Afterward, the relay fee was lowered to 0.0001 BTC to avoid having the same
problem in the future. However, the block inclusion code was left setting
fForRelay to true! This fixes that, so the lower 0.0001 BTC allowance is (as
intended) only permitted for real relaying.

12 years agoMerge pull request #700 from TheBlueMatt/qtalertfix
Gavin Andresen [Tue, 13 Dec 2011 20:56:26 +0000]
Merge pull request #700 from TheBlueMatt/qtalertfix

Fix status bar not displaying Alerts.

12 years agoFix status bar not displaying Alerts.
Matt Corallo [Tue, 13 Dec 2011 19:00:21 +0000]
Fix status bar not displaying Alerts.

12 years agoAdd "About Qt" menu option to show built-in Qt About dialog
Wladimir J. van der Laan [Tue, 13 Dec 2011 16:30:13 +0000]
Add "About Qt" menu option to show built-in Qt About dialog

- Most Qt programs do this, and it can be useful to find out what version of Qt was built against.

12 years agoEnable wordwrap for long message in passphrase dialog
Wladimir J. van der Laan [Tue, 13 Dec 2011 15:28:56 +0000]
Enable wordwrap for long message in passphrase dialog
- Remove explicit resizing from constructor to prevent potential hang

12 years agomove \\n outside _() in --help
Nils Schneider [Tue, 13 Dec 2011 05:46:37 +0000]
move \\n outside _() in --help

12 years agoMerge commit '7298ebb'
Gavin Andresen [Mon, 12 Dec 2011 20:03:16 +0000]
Merge commit '7298ebb'

12 years agoadded translations: pt_BR zh_CN
Nils Schneider [Mon, 12 Dec 2011 19:56:34 +0000]
added translations: pt_BR zh_CN

12 years agoupdated translations: es es_CL nb ru
Nils Schneider [Mon, 12 Dec 2011 19:53:18 +0000]
updated translations: es es_CL nb ru

12 years agoMerge pull request #687 from TheBlueMatt/gitianssl
Gavin Andresen [Mon, 12 Dec 2011 19:33:17 +0000]
Merge pull request #687 from TheBlueMatt/gitianssl

Re-enable RPCSSL in gitian builds.

12 years agoMerge pull request #694 from luke-jr/restore_old_miniupnp_compat
Gavin Andresen [Mon, 12 Dec 2011 19:32:48 +0000]
Merge pull request #694 from luke-jr/restore_old_miniupnp_compat

Restore compatibility with miniupnpc 1.5 (without breaking miniupnp 1.6)

12 years agoRestore compatibility with miniupnpc 1.5 (without breaking miniupnp 1.6)
Luke Dashjr [Sat, 10 Dec 2011 16:52:50 +0000]
Restore compatibility with miniupnpc 1.5 (without breaking miniupnp 1.6)

12 years agoMerge pull request #693 from laanwj/min_fix_tmpshow
Wladimir J. van der Laan [Fri, 9 Dec 2011 21:43:34 +0000]
Merge pull request #693 from laanwj/min_fix_tmpshow

Prevent window from being shown momentarily when using -min

12 years agoPrevent window from being shown momentarily when using -min
Wladimir J. van der Laan [Fri, 9 Dec 2011 21:35:57 +0000]
Prevent window from being shown momentarily when using -min
- In a previous patch, show() was added to all the page switcher functions. As the contructor calls showOverviewPage(), this means the window is shown in the constructor.
- This change prevents this by connecting show() to the signal instead.

12 years agoWhen using Qt GUI, move parameter-parsing to start of qt/bitcoin.cpp:main()
Rune K Svendsen [Fri, 9 Dec 2011 18:19:27 +0000]
When using Qt GUI, move parameter-parsing to start of qt/bitcoin.cpp:main()

12 years agoRe-enable RPCSSL in gitian builds.
Matt Corallo [Wed, 7 Dec 2011 15:26:55 +0000]
Re-enable RPCSSL in gitian builds.

12 years agoMerge pull request #679 from laanwj/cmdline_minimize
Gavin Andresen [Mon, 5 Dec 2011 15:53:15 +0000]
Merge pull request #679 from laanwj/cmdline_minimize

Implement -min option to start minimized

12 years agoMerge pull request #682 from TheBlueMatt/gdicrypto
Gavin Andresen [Mon, 5 Dec 2011 15:53:00 +0000]
Merge pull request #682 from TheBlueMatt/gdicrypto

Move -lgdi32 after -lcrypto (fixes #681)

12 years agoImplement -min option to start minimized
Wladimir J. van der Laan [Sat, 3 Dec 2011 16:57:30 +0000]
Implement -min option to start minimized

12 years agoMove -lgdi32 after -lcrypto (fixes #681).
Matt Corallo [Sun, 4 Dec 2011 02:48:32 +0000]
Move -lgdi32 after -lcrypto (fixes #681).

12 years agoMerge pull request #654 from TheBlueMatt/dnsseed-thread
Gavin Andresen [Fri, 2 Dec 2011 15:09:41 +0000]
Merge pull request #654 from TheBlueMatt/dnsseed-thread

Move DNS Seed lookup to a new thread.

12 years agoRetain only the most recent time samples
Michael Hendricks [Wed, 30 Nov 2011 03:15:59 +0000]
Retain only the most recent time samples

Remembering all time samples makes nTimeOffset slow to respond to
system clock corrections.  For instance, I start my node with a system
clock that's 30 minutes slow and run it for a few days.  During that
time, I accumulate 10,000 offset samples with a median of 1800
seconds.  Now I correct my system clock.  Without this change, my node
must collect another 10,000 samples before nTimeOffset is correct
again.  With this change, I must only accumulate 100 samples to
correct the offset.

Storing unlimited time samples also allows an attacker with many IP
addresses (ex, a large botnet) to perform a memory exhaustion attack
against Bitcoin nodes.  The attacker sends a version message from each
IP to his target, consuming more of the target's memory each time.
Time samples are small, so this attack might be impractical under the
old code, but it's impossible with the new code.

12 years agoOnly log time samples in debug mode
Michael Hendricks [Wed, 30 Nov 2011 02:06:10 +0000]
Only log time samples in debug mode

The full list of time samples is rarely useful outside of debugging.
The node's time offset, however is useful for discovering local clock
drift, so it's displayed in all logging modes.

12 years agoMerge pull request #670 from gavinandresen/rpcauth_speedup
Gavin Andresen [Thu, 1 Dec 2011 21:01:59 +0000]
Merge pull request #670 from gavinandresen/rpcauth_speedup

Speed up RPC authentication (reworked pull from Joel Katz)

12 years agoSpeed up RPC authentication (reworked pull from Joel Katz)
Gavin Andresen [Thu, 1 Dec 2011 14:07:02 +0000]
Speed up RPC authentication (reworked pull from Joel Katz)

12 years agoMerge pull request #534 from gavinandresen/DoSorphans
Gavin Andresen [Thu, 1 Dec 2011 20:42:02 +0000]
Merge pull request #534 from gavinandresen/DoSorphans

Denial-of-service prevention: low-difficulty blocks

12 years agoOrphan block fill-up-memory attack prevention
Gavin Andresen [Thu, 8 Sep 2011 16:51:43 +0000]
Orphan block fill-up-memory attack prevention

12 years agoMoved checkpoints out of main, to prep for using them to help prevent DoS attacks
Gavin Andresen [Thu, 8 Sep 2011 20:50:58 +0000]
Moved checkpoints out of main, to prep for using them to help prevent DoS attacks

12 years agoMerge pull request #666 from nobled/secstrings
Gavin Andresen [Thu, 1 Dec 2011 01:30:54 +0000]
Merge pull request #666 from nobled/secstrings

Implement an mlock()'d string class for storing passphrases

12 years agoMerge pull request #667 from laanwj/homeaddricons
Gavin Andresen [Thu, 1 Dec 2011 01:28:13 +0000]
Merge pull request #667 from laanwj/homeaddricons

Make home and addressbook icon more consistent with other toolbar icons

12 years agoAdd missing command-line arguments to --help/-? output
Gavin Andresen [Sun, 27 Nov 2011 19:53:30 +0000]
Add missing command-line arguments to --help/-? output

12 years agoMove DNS Seed lookup to a new thread.
Matt Corallo [Mon, 21 Nov 2011 17:25:00 +0000]
Move DNS Seed lookup to a new thread.

12 years agoMake home and addressbook icon more consistent with other toolbar icons (make it...
Wladimir J. van der Laan [Sat, 26 Nov 2011 08:55:12 +0000]
Make home and addressbook icon more consistent with other toolbar icons (make it blue and flip light source direction)

12 years agoImplement an mlock()'d string class for storing passphrases
Dylan Noblesmith [Sat, 26 Nov 2011 06:02:04 +0000]
Implement an mlock()'d string class for storing passphrases

SecureString is identical to std::string except with secure_allocator
substituting for std::allocator. This makes casting between them
impossible, so converting between the two at API boundaries requires
calling ::c_str() for now.

12 years agoallow for filtering addresses and labels by searching for the typed string anywhere...
Wladimir J. van der Laan [Thu, 24 Nov 2011 19:20:01 +0000]
allow for filtering addresses and labels by searching for the typed string anywhere, not just at the beginning (#641)

12 years agoupdate translation: de
Nils Schneider [Thu, 24 Nov 2011 12:40:32 +0000]
update translation: de

12 years agoadd translations: hu uk
Nils Schneider [Thu, 24 Nov 2011 12:36:30 +0000]
add translations: hu uk

12 years agoMerge pull request #662 from paraipan/master
Nils Schneider [Thu, 24 Nov 2011 12:04:35 +0000]
Merge pull request #662 from paraipan/master

Some patches...

12 years agoSmall fixes in both spanish translations
Alex B [Thu, 24 Nov 2011 11:32:19 +0000]
Small fixes in both spanish translations

12 years agoupdate translations: da de nl ru zh_TW
Nils Schneider [Tue, 22 Nov 2011 12:01:07 +0000]
update translations: da de nl ru zh_TW

12 years agoadd italian translation
Nils Schneider [Tue, 22 Nov 2011 12:00:49 +0000]
add italian translation

12 years agoDon't forget to bump release numbers in READMEs next time
Gavin Andresen [Mon, 21 Nov 2011 19:38:47 +0000]
Don't forget to bump release numbers in READMEs next time

12 years agoBump version numbers to 0.5.1
Gavin Andresen [Mon, 21 Nov 2011 19:37:59 +0000]
Bump version numbers to 0.5.1

12 years agoMerge pull request #602 from wowus/master
Gavin Andresen [Mon, 21 Nov 2011 19:33:14 +0000]
Merge pull request #602 from wowus/master

Cleaned up critical section code.

12 years agoMerge pull request #634 from laanwj/doxygen
Gavin Andresen [Mon, 21 Nov 2011 19:31:57 +0000]
Merge pull request #634 from laanwj/doxygen

Add doxygen documentation

12 years agoMerge pull request #632 from mndrix/deprecate-getblocknumber
Gavin Andresen [Mon, 21 Nov 2011 19:31:42 +0000]
Merge pull request #632 from mndrix/deprecate-getblocknumber

Deprecate RPC getblocknumber

12 years agoMerge pull request #652 from TheBlueMatt/master
Gavin Andresen [Mon, 21 Nov 2011 19:27:26 +0000]
Merge pull request #652 from TheBlueMatt/master

Update contrib/debian/ for 0.5.0 release and fix copyright file.

12 years agoUpdate release process instructions
Gavin Andresen [Mon, 21 Nov 2011 19:13:22 +0000]
Update release process instructions

12 years agoBump version to 0.5.1
Gavin Andresen [Mon, 21 Nov 2011 18:38:09 +0000]
Bump version to 0.5.1

12 years agoMerge pull request #653 from luke-jr/bugfix_transparent_tooltip
Wladimir J. van der Laan [Mon, 21 Nov 2011 17:20:34 +0000]
Merge pull request #653 from luke-jr/bugfix_transparent_tooltip

Bugfix: only make QListView transparent, not its tooltips

12 years agoBugfix: only make QListView transparent, not its tooltips
Luke Dashjr [Mon, 21 Nov 2011 17:18:15 +0000]
Bugfix: only make QListView transparent, not its tooltips

12 years agoUpdate contrib/debian/ for 0.5.0 release and fix copyright file.
Matt Corallo [Mon, 21 Nov 2011 16:33:34 +0000]
Update contrib/debian/ for 0.5.0 release and fix copyright file.

12 years agoMerge pull request #646 from luke-jr/bugfix_MIT_icons
Wladimir J. van der Laan [Mon, 21 Nov 2011 09:07:24 +0000]
Merge pull request #646 from luke-jr/bugfix_MIT_icons

update debian copyright file for MIT icon relicensing