| Commit message (Collapse) | Author | Age | Files | Lines |
| |\
| |
| | |
Add 'mempool' P2P command, and extend 'getdata' behavior
|
| | |
| |
| |
| | |
to permit downloading of mempool transactions from the remote peer.
|
| |\ \
| | |
| | | |
Optimize JSON-RPC getblockhash
|
| | | |
| | |
| | |
| | |
| | | |
- If the height is in the first half, start at the genesis block and go up, rather than at the top
- Cache the last lookup and use it as a reference point if it's close to the next request, to make linear lookups always fast
|
| | |/
|/| |
|
| | | |
|
| |\ \
| |/
|/|
| |
| | |
Conflicts:
src/main.cpp
|
| | |
| |
| |
| |
| |
| | |
proof-of-work and merkletree, since those need to be provided later)
This throws an exception from CreateNewBlock otherwise, which is not safe without #1245!
|
| | |
| |
| |
| |
| |
| | |
Adds CBlock::CURRENT_VERSION and CTransaction::CURRENT_VERSION
constants, and makes non-CURRENT_VERSION transactions nonstandard.
This will help make future upgrades smoother.
|
| | |
| |
| |
| |
| | |
::addUnchecked()'s only caller already takes the necessary lock,
and has already calculated the TX's hash.
|
| | | |
|
| | | |
|
| | |
| |
| |
| |
| |
| | |
In LoadExternalBlockFile(), errors are already caught... silently.
Add a warning message, even though we do not abort the program due to
load error.
|
| |\ \
| | |
| | | |
Update Header Licenses
|
| | | |
| | |
| | |
| | |
| | |
| | | |
I originally created a pull to replace the "COPYING" in crypter.cpp and
crypter.h, but it turned out that COPYING was actually the correct
file.
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Gets rid of `MainFrameRepaint` in favor of specific update functions that tell the UI exactly what changed.
This improves the efficiency of various handlers. Also fixes problems with mined transactions not showing up until restart.
The following notifications were added:
- `NotifyBlocksChanged`: Block chain changed
- `NotifyKeyStoreStatusChanged`: Wallet status (encrypted, locked) changed.
- `NotifyAddressBookChanged`: Address book entry changed.
- `NotifyTransactionChanged`: Wallet transaction added, removed or updated.
- `NotifyNumConnectionsChanged`: Number of connections changed.
- `NotifyAlertChanged`: New, updated or cancelled alert. As this finally makes it possible for the UI to know when a new alert arrived, it can be shown as OS notification.
These notifications could also be useful for RPC clients. However, currently, they are ignored in bitcoind (in noui.cpp).
Also brings back polling with timer for numBlocks in ClientModel. This value updates so frequently during initial download that the number of signals clogs the UI thread and causes heavy CPU usage. And after initial block download, the value changes so rarely that a delay of half a second until the UI updates is unnoticable.
|
| |\ \ \
| |/ /
|/| | |
make CheckDiskSpace() use 50 * 1024 * 1024 Bytes
|
| | | |
| | |
| | |
| | | |
disk space and remove 2 ugly spaces from a message string
|
| | | | |
|
| |\ \ \
| | | |
| | | | |
Remove dead code: CTxDB::EraseBlockIndex(), CBlockIndex::EraseBlockFromDisk()
|
| | |/ / |
|
| |/ / |
|
| | | |
|
| | |
| |
| |
| |
| |
| | |
* Use -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameters
* Remove xCXXFLAGS usage in makefile.unix
* Fix several recent and older sign-compare warnings
|
| |\ \
| | |
| | | |
Fix final sign comparison warnings
|
| | | |
| | |
| | |
| | | |
to eliminate signed/unsigned comparison warnings
|
| |\ \ \
| | | |
| | | | |
gettransaction RPC for non-wallet transactions
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Works for wallet transactions, memory-pool transaction and block chain
transactions.
Available for all:
* txid
* version
* locktime
* size
* coinbase/inputs/outputs
* confirmations
Available only for wallet transactions:
* amount
* fee
* details
* blockindex
Available for wallet transactions and block chain transactions:
* blockhash
* time
|
| |\ \ \ \
| |_|/ /
|/| | | |
Add -loadblock to load from an external blk000?.dat file
|
| | | | | |
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Rather than storing ftell(3)'s return value -- a long -- in an
unsigned int, we store and check a properly typed temp. Then, assured a
non-negative value, we store in nBlockPosRet.
|
| | | | |
| | | |
| | | |
| | | |
| | | | |
At these code sites, it is preferable to cast rather than change
a variable's type.
|
| |/ / /
| | |
| | |
| | | |
Fixes several sign-comparison warnings.
|
| |/ /
| |
| |
| | |
never serialized)
|
| |\ \ |
|
| | | | |
|
| | | | |
|
| | | |
| | |
| | |
| | | |
and nPooledTx
|
| | | | |
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | | |
This commit removes the dependency of serialize.h on PROTOCOL_VERSION,
and makes this parameter required instead of implicit. This is much saner,
as it makes the places where changing a version number can have an
influence obvious.
|
| | | |
| | |
| | |
| | |
| | | |
In addition to standard code separation, this change opens the door
to fixing several include inter-dependencies.
|
| | | | |
|
| |/ /
| |
| |
| |
| | |
foo.size() typically returns an unsigned integral type; make loop variables
match those types' signedness.
|
| | | |
|
| | |
| |
| |
| |
| |
| |
| |
| | |
Open database once per "tx" message, rather than multiple times,
in the case of orphan transaction presence.
As a side effect, a now-unused CTransaction::AcceptToMemoryPool()
variant is removed.
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
All client version information is moved to version.cpp, which optionally
(-DHAVE_BUILD_INFO) includes build.h. build.h is automatically generated
on supporting platforms via contrib/genbuild.sh, using git describe.
The git export-subst attribute is used to put the commit id statically
in version.cpp inside generated archives, and this value is used if no
build.h is present.
The gitian descriptors are modified to use git archive instead of a
copy, to create the src/ directory in the output. This way,
src/src/version.cpp will contain the static commit id. To prevent
gitian builds from getting the "-dirty" marker in their git-describe
generated identifiers, no touching of files or running sed on the
makefile is performed anymore. This does not seem to influence
determinism.
|
| | | |
|
| |/ |
|
| | |
|
| | |
|