Jeff Garzik
12564aa166
configure.ac: remove superfluous bracket
...
Reported-by: Cory Fields
11 years ago
Jeff Garzik
15fd245b9a
Merge pull request #2943 from theuni/autotools-final
...
Autotools buildsystem
11 years ago
Wladimir J. van der Laan
495242c1ad
Merge pull request #2976 from laanwj/2013_09_txid_details
...
qt: add vout index to transaction id in transactions details dialog
11 years ago
Wladimir J. van der Laan
9d6b60cf50
Merge pull request #2973 from Diapolo/qDebug
...
Bitcoin-Qt: Use qDebug() for printing to debug.log
11 years ago
Wladimir J. van der Laan
ed4c7fd4fd
qt: add vout index to transaction id in transactions details dialog
11 years ago
Philip Kaufmann
42018eff07
Bitcoin-Qt: Use qDebug() for printing to debug.log
...
- removes all usages of PrintDebugStringF from Qt code
- ensure same format for all debug.log messages "functionname : Message"
11 years ago
Gavin Andresen
d22d9753cc
Merge pull request #2978 from gmaxwell/rpc_settxfee_doc
...
Make settxfee clear that units are btc/kb.
11 years ago
Cory Fields
35b8af9226
autotools: switch to autotools buildsystem
11 years ago
Gregory Maxwell
a22eed6a1e
Make settxfee clear that units are btc/kb.
11 years ago
Wladimir J. van der Laan
51c2fa16bb
Qt 4.8.3 r2 in gitian and release process
...
Also needed to add `unzip` package for the added unzip command for
OpenSSL in the Qt build.
11 years ago
Wladimir J. van der Laan
af079f0b21
Add protobuf 2.5.0 download to gitian release process
11 years ago
Gavin Andresen
2fee100f03
Merge pull request #2944 from gavinandresen/acceptheader
...
Set Accept: application/bitcoin-paymentrequest header
11 years ago
Matt Corallo
55ed3f1475
Don't warn about forks while fIsInitialDownload
11 years ago
Gregory Maxwell
dd30937ce3
Merge pull request #2948 from jgarzik/changeaddr
...
RPC: add getrawchangeaddress, for raw transaction change destinations
11 years ago
Wladimir J. van der Laan
f4f048ee58
Merge pull request #2958 from laanwj/2013_08_txfee2
...
[Qt] Display txfee in first sendCoinsDialog message box
11 years ago
Pieter Wuille
2c27bbca81
Merge pull request #2967 from tstranex/master
...
Fix typo in a comment: it's base58, not base48.
11 years ago
Timothy Stranex
ccf3af77c1
Fix typo in a comment: it's base58, not base48.
11 years ago
Wladimir J. van der Laan
1537d174d7
Merge pull request #2951 from laanwj/2013_08_addressbook_purpose
...
[Qt] Handle address purpose in incremental updates
11 years ago
Wladimir J. van der Laan
2534d05c63
Merge pull request #2963 from Diapolo/log-qt
...
Bitcoin-Qt: allow to differentiate Qt log entries from core
11 years ago
Philip Kaufmann
e664c3d70c
Bitcoin-Qt: allow to differentiate Qt log entries from core
...
- prepend "Bitcoin-Qt" in front of debug.log entries, which come from Qt
- move DebugMessageHandler installation upwards to the event handler
installation, which fits much better
11 years ago
Jonas Schnelli
9e8904f6ae
qt: Display txfee in first sendCoinsDialog message box
...
Signed-off-by: Jonas Schnelli <jonas.schnelli@include7.ch>
11 years ago
Pieter Wuille
f19eda1d57
Merge pull request #2959 from jmcorgan/fix-typo
...
fix the typo fix in linearize.py
11 years ago
Johnathan Corgan
71bc3a4b9f
fix the typo fix in linearize.py
11 years ago
Wladimir J. van der Laan
1b63ea872e
Merge pull request #2957 from Rav3nPL/patch-1
...
fix help prompt
11 years ago
Rav3nPL
63dc00d104
fix help prompt
11 years ago
Wladimir J. van der Laan
329de9bb64
Merge pull request #2955 from laanwj/2013_08_htmlescape
...
qt: Use GUIUtil::HtmlEscape to escape HTML
11 years ago
Wladimir J. van der Laan
9d2fee17e0
qt: Use GUIUtil::HtmlEscape to escape HTML
...
This is why we created this function. Avoids some #ifdef.
11 years ago
Jeff Garzik
df6c5433e7
contrib/misc/mkbootstrap: rename to linearize.py
11 years ago
Jeff Garzik
0a0970fa0e
Merge branch 'mkbootstrap'
11 years ago
Jeff Garzik
701f6c35bc
Add "mkbootstrap" script to contrib, for creating bootstrap.dat.
11 years ago
Wladimir J. van der Laan
5da998e887
qt: Add comment to sorting step in refreshAddressTable
11 years ago
Wladimir J. van der Laan
1a12b3e090
Merge pull request #2930 from Diapolo/displayUnit
...
Bitcoin-Qt: fixes for using display unit from options
11 years ago
Wladimir J. van der Laan
dcd0b0775e
qt: Handle address purpose in incremental updates
...
Correctly use the purpose of addresses that are added after the start
of the client. Addresses with purpose "refund" and "change" should not
be visible in the GUI. This is now handled correctly.
11 years ago
Pieter Wuille
ae6eac667b
Merge pull request #2940 from Diapolo/checkpoint
...
move Checkpoints:fEnabled from step 2 to step 3 in init
11 years ago
Philip Kaufmann
bdd0c59ab0
Bitcoin-Qt: fixes for using display unit from options
...
- extend PaymentServer with setOptionsModel() and rework initNetManager()
to make use of that
- fix all other places in the code to use display unit from options and no
hard-coded unit
11 years ago
patrick s
a42eef6f10
verify vchPubKey matches calculated public key unless fSkipCheck is set
11 years ago
patrick s
6e51b3bddf
improve wallet load time by removing duplicated calls to EC_KEY_check_key and adding a hash for vchPubKey/vchPrivKey entries in wallet.dat
...
backwards compatible with previous wallet.dat format
11 years ago
Gregory Maxwell
9d14e689c8
[raw] reject insanely high fees by default in sendrawtransaction
...
There have been several incidents where mainnet experimentation with
raw transactions resulted in insane fees. This is hard to prevent
in the raw transaction api because the inputs may not be known.
Since sending doesn't work if the inputs aren't known, we can catch
it there.
This rejects fees > than 10000 * nMinRelayTxFee or 1 BTC with the
defaults and can be overridden with a bool at the rpc.
11 years ago
Jeff Garzik
e5e9904c1c
RPC: add getrawchangeaddress, for raw transaction change destinations
11 years ago
Wladimir J. van der Laan
ff33a3470d
Merge pull request #2931 from Diapolo/intro
...
Bitcoin-Qt: add testnet check and icon to intro dialog
11 years ago
Gregory Maxwell
1ef0067eab
Merge pull request #2904 from gmaxwell/newaddr-no-passphrase
...
[QT] Don't ask for a passphrase to getnewaddress.
11 years ago
Gregory Maxwell
bf3a20a6e8
[wallet] Consider generated coins mature at COINBASE_MATURITY+1
...
We're not seeing large reorgs that would justify waiting a large
amount past the rule required maturity, and the extra three
hours is just a nuisance. Take one more block to at least give
the 100th block time to propagate.
11 years ago
Gavin Andresen
b773da064d
Set Accept: application/bitcoin-paymentrequest header
...
Suggestion from BitPay: set an Accept: HTTP header when
fetching payment requests / payment ACKs.
11 years ago
Jeff Garzik
bb7d0fc12f
Merge pull request #2928 from jgarzik/cnb-txout
...
CreateNewBlock / getblocktemplate cleaning
11 years ago
Gavin Andresen
b62dc051aa
Merge pull request #2938 from petertodd/op-reserved-weirdness
...
Document and test OP_RESERVED weirdness
11 years ago
Jeff Garzik
f1dbed9233
miner: constify CreateNewBlock() arg scriptPubKeyIn
11 years ago
Peter Todd
214d45b6b9
Document and test OP_RESERVED weirdness
...
Seems it was forgotten about when IsPushOnly() and the unittests were
written. A particular oddity is that OP_RESERVED doesn't count towards
the >201 opcode limit unlike every other named opcode.
11 years ago
Pieter Wuille
8a9e538227
Merge pull request #2935 from sipa/obounds
...
Fix out-of-bounds check
11 years ago
Philip Kaufmann
60fc1b4034
move Checkpoints:fEnabled from step 2 to step 3 in init
...
- it belongs to parameter-to-internal flags step, not parameter
interactions phase
11 years ago
Jeff Garzik
3d86e7cd48
Merge pull request #2618 from fcicq/solaris-support
...
Partial solaris support
11 years ago