Commit Graph

1056 Commits

Author SHA1 Message Date
tomFlowee 6e7a54b7d4 [GUI] Update service bits. 2021-04-19 11:29:45 +02:00
tomFlowee 00a29b1df9 Merge branch 'master' of origin:thehub 2021-04-09 13:11:20 +02:00
tomFlowee 72b47b276f Move disk-free-checker to later in the process
This avoids issues where we check for disk space before
the databases are created.
2021-04-05 13:28:27 +02:00
tomFlowee 6142efc7e1 Fix lifetime of the diskSpaceChecker class
As the DiskSpaceChecker owns a deadlinetimer, which depends on the asio
io_service, we need to ensure it is destructed before the io_service is.

The io_service, and now the diskSpaceChecker as well, are specifically
shut down, in order.
Application is still a singleton that dies after main() ends, but will
have nearly no members at that time.
2021-04-05 11:36:31 +02:00
tomFlowee 30021be356 Add binding addresses whitelisted for API filters 2021-04-04 17:08:21 +02:00
tomFlowee 9dbf93f7a7 Add assert to fail fast. 2021-04-03 20:35:19 +02:00
tomFlowee 647b5887b5 Have a class that monitors filesystem available space.
This will be used to cleanly shut down the node when disk space
available is nearing critical levels. Well before we get into an issue.
2021-04-02 17:25:43 +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 9cd25d4fbf Be consistent 2021-03-25 18:49:00 +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 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 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 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 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
tomFlowee 51e671fefd Allow eliding by the compiler. 2021-03-08 13:48:33 +01:00
tomFlowee 78a01bb4b7 Take action on a static code checker finding an issue.
[code-quality]
We got a warning about a dereference of a nullptr. But that implied we
have an impossible combination of member variables.
So, lets assert on that being impossible so;
a) we get a fail-fast if this ever happens.
b) the static code checker will stop warning us.

Notice that asserts are compiled out of release executables. So this is
effectively a no-op for releases.
2021-03-08 13:48:30 +01:00