Commit Graph

12264 Commits

Author SHA1 Message Date
tomFlowee 914392e944 Make ready for release 2021.03.1 2021-03-29 12:21:28 +02:00
tomFlowee fd7b6096bf Rename argument enableblockindex to more correct feesmetadata 2021-03-29 12:20:49 +02:00
tomFlowee c82766d9c7 Micro optimization 2021-03-27 16:02:49 +01:00
tomFlowee 5f9def2226 Update maintainer email address 2021-03-26 19:36:46 +01:00
tomFlowee ca0201f107 Avoid working on temporary 2021.03.0 2021-03-26 19:24:08 +01:00
tomFlowee 578b9b1102 Update version number 2021-03-26 17:54:34 +01:00
tomFlowee 9cd25d4fbf Be consistent 2021-03-25 18:49:00 +01:00
tomFlowee 178bdf8b74 Add new unit test
This test tests the new Mining::SubmitBlock feature.
We also test the GetBlock with the new FilterOnScriptType feature.

Some new helper methods in the messageBuilder and FastBlock are also
used and tested.
2021-03-24 21:00:26 +01:00
tomFlowee 3e9fe7aa3c Add to the Flowee API: Mining::SubmitBlock
This adds a new API endpoint that allows submitting of a new block to be
validated and possibly appended to the tip of the chain.
2021-03-24 21:00:25 +01:00
tomFlowee ce8ecd965e Add api doc. 2021-03-24 21:00:25 +01:00
tomFlowee 4f3c1ca3e1 Remove dead code. 2021-03-24 21:00:25 +01:00
tomFlowee d797b1bf50 Minor additions of helper methods.
Tested in the upcoming unit test.
2021-03-24 21:00:25 +01:00
tomFlowee 4f8f5ba739 blk file management: handle truncated files.
This makes it possible for the most recent file to not be the default
filesize but much smaller. This fixes us to writing outside of the
allocated membuffer and causing a kernel signal.
Additionally we start a new file for writes in that case.

This case is seen in the unit tests where we have a perfect-fitting file
in git which we then try to write to when adding a new block.
As such this is tested in the upcoming unit test.
2021-03-24 21:00:25 +01:00
tomFlowee 41e0739e17 add op_group convenience method to transactionbuilder 2021-03-24 19:08:25 +01:00
tomFlowee 10c447479a Add badge 2021-03-24 19:08:25 +01:00
tomFlowee c1cdbba72b Add new feature, search a block with script-type
This new flag to the getBlock API call allows us to select
a transaction based on the usage of a certain script opcode.
This uses the new metadata index.
2021-03-24 19:08:25 +01:00
tomFlowee 0a1f0f8c52 Split 'API' tests into separate executables.
The test starts to become long to run and using the one main.cpp
hack we had removes our ability to select one test to run, so lets
go back to one executable per class.
2021-03-24 19:08:25 +01:00
tomFlowee 8124a65795 Peer reviewed: Blockchain::IncludeTxFees
Make plural.
2021-03-18 11:34:59 +01:00
tomFlowee 9d6ba33cc0 Add and test service to receive all double spend proofs. 2021-03-18 11:07:50 +01:00
tomFlowee d15a89dc99 Avoid duplication 2021-03-17 21:07:25 +01:00
tomFlowee 9025a2e2ea Add DoubleSpendService to listen to all double spend notifications 2021-03-16 19:53:14 +01:00
tomFlowee 7406cd6ecf Remove dead code (xor of stream). 2021-03-16 19:34:33 +01:00
tomFlowee 190de58f3e Add docs. 2021-03-16 18:56:28 +01:00
tomFlowee 0100c2f9e2 Wrap the services in one class
This allows us to avoid duplicating complexity in starting the API
subsystem.
2021-03-16 15:14:13 +01:00
tomFlowee fdd35c9e2c [REST] Implement address/details POST 2021-03-16 13:38:01 +01:00
tomFlowee 369fbd7b92 Don't trust inputs. 2021-03-15 12:55:24 +01:00
tomFlowee 9dada4c73e Separate tx validation and fees fetching.
For the txid/fee index we do a bit more than we can do for shallow block
validation.
Now we don't actually fully validate all transactions when this index is
enabled, we just fetch the fees.
2021-03-15 12:54:58 +01:00
tomFlowee 45dd785f39 Follow whole-script sizelimit.
Also add unit test for the op_return limits.
2021-03-13 16:52:04 +01:00
tomFlowee a9d3c2ee92 Support change to allow multiple op_returns 2021-03-13 14:02:38 +01:00
tomFlowee aa57e4bbb2 Merge branch 'blockMetadata' 2021-03-12 14:12:11 +01:00
tomFlowee e40b408c37 Put the writing of metadata in a try/catch
This solves issues with read-only blockchains.
As used by the unit test.
2021-03-12 14:08:55 +01:00
tomFlowee e9fd6384d5 Fix regression, and improve message
This again fetches the transaction data itself.
2021-03-12 14:08:16 +01:00
tomFlowee 5d750eb736 One less historical check needed so far after making them mandatory 2021-03-12 13:18:31 +01:00
tomFlowee 4e0acff905 Make reindex finding blocks massively faster.
The code that connects blocks together uses the block-hash (blockId) for
that, which we always just created on the fly.
Instead store the blockId on the state and in that way make adding
headers not entirely in-sequence be 10 times as fast.

Additionally, we wait with actual validation after a reindex until the
files are all found because otherwise we can't save the meta blocks.
2021-03-12 11:21:46 +01:00
tomFlowee ad7b81c17a Simplify and pick during reindex. 2021-03-12 10:28:27 +01:00
tomFlowee c73a9d850e Fix compiler warning. 2021-03-12 10:09:03 +01:00
tomFlowee e048ab1e2c Fix compiler warning. 2021-03-12 10:08:49 +01:00
tomFlowee bf5726eb58 Add scripting type on the block metadata 2021-03-12 10:08:31 +01:00
tomFlowee 6405ff2bad Finish up some metadata details. 2021-03-12 09:35:27 +01:00
tomFlowee bd5baa7133 Add ability to retrieve fees for a transaction.
This adds an option to the GetTransaction Flowee API to return the fees
for a whole transaction.
Support for this is added in the Blockchain (searcher) and the
RestService components.

Notice that no fees will be returned if the BlockMetaData was not
created properly.
2021-03-12 09:06:06 +01:00
tomFlowee 97e2ddbc87 Code meta-replacement tech
Make sure that if we validate a block again (reindex?), we don't create
a new meta object if a perfectly fine one already exists.
2021-03-11 10:22:45 +01:00
tomFlowee a7fd89c360 Make sure we record the lack of fee info. 2021-03-10 20:11:04 +01:00
tomFlowee 2a52ee3fe6 Use meta when available for finding tx.
This implements the getrawtransaction API/RPC calls to now use the meta
object, when available, for much faster finding of a transaction by txid.
2021-03-10 20:11:04 +01:00
tomFlowee 8a846d3a7b Add option -enableblockindex=true
this allows the user to ensure the metadata blocks fetch the previous
transaction in order to calculate the transaction-fee.
Normally this is skipped for transactions we don't need to do the script
validation for (old blocks).
2021-03-10 20:11:04 +01:00
tomFlowee b1daf37b43 Make reindex find the metadata blocks. 2021-03-10 20:11:04 +01:00
tomFlowee a4351c2f95 Write the meta block to disk. 2021-03-10 20:11:04 +01:00
tomFlowee 376a4ef9b5 Make block validation create a block metadata object.
This also changes the raw pointers to unique pointers for undo data.
2021-03-10 20:11:04 +01:00
tomFlowee 2395764bde Start new class BlockMetaData 2021-03-10 20:11:04 +01:00
tomFlowee 0cd6469efa Don't repeat default log section 2021-03-10 18:09:35 +01:00
tomFlowee 07c4922d71 Avoid copy 2021-03-10 18:09:32 +01:00