Commit Graph

11739 Commits

Author SHA1 Message Date
TomZ 2cb30c0545 Add README to the new txVulcano app 2019-03-28 22:36:54 +01:00
TomZ 6da36e1b4b Version 2019.02 2019-03-28 20:30:01 +01:00
TomZ a5dd25db88 move latest 2019-03-28 20:28:42 +01:00
TomZ 2f5c02538c remove unfinished parts of TransactionBuilder 2019-03-28 20:23:51 +01:00
TomZ 69f1c3c129 Fix various small items in txVulcano. 2019-03-28 20:23:47 +01:00
TomZ 6524acbb96 Final TODOs for the APIProtocol review done 2019-03-28 20:23:41 +01:00
TomZ 57542dda91 Fix regression in NWM (after RingBuffers intro) 2019-03-28 10:23:32 +01:00
TomZ 6475d6060a Fix connecting to named hosts (as opposed to IPs) 2019-03-28 10:23:28 +01:00
TomZ 209e955a11 fix some naming TODOs 2019-03-28 10:23:06 +01:00
TomZ 6647cd0fc9 Move default log level to ignore Info but print Warning 2019-03-27 21:24:19 +01:00
TomZ e2ad40b719 Rename some API items for consistency 2019-03-27 20:25:07 +01:00
TomZ cd31c199ee Add some more asserts to NWM 2019-03-27 20:25:07 +01:00
TomZ a628db675a Cleanup and work on the API tags.
Make things more foolproof by having similar items in different namespaces
use the same number.
Remove APIs for the wallet as that is not a shipped component of the Hub
2019-03-27 20:24:31 +01:00
TomZ c8108f387c Drop API login requirement and api-cookie argument 2019-03-27 18:55:13 +01:00
TomZ 778155cf81 Set tx count by default to 5 million
Also avoid premature optimisation.
2019-03-27 18:55:13 +01:00
TomZ 5d0fb95fda Fixlet; move assert
The boost APIs may callback outside of the strand in case of an error.
2019-03-25 12:50:27 +01:00
TomZ 503adb2484 Fix hash as returned by the API
when we get a hash from the JSON wrapped RPC interface it is a string
and it is in reverse order.
This makes sure that the generate() will create the same
hash as other parts of the API.
2019-03-25 12:50:27 +01:00
TomZ 0264e56551 Second part of 'file full' utxo detection
Do checks during insertAll for those really large blocks.
2019-03-25 12:50:27 +01:00
TomZ cb004d3336 Upgrade default to 128 2019-03-25 12:50:27 +01:00
TomZ 7e8ce613bb Fix regression, failure on shutdown 2019-03-24 21:39:41 +01:00
TomZ df92847de0 Various bugfixes in txVulcano app 2019-03-24 21:37:21 +01:00
TomZ f78ff55e8d Parameter interaction; blocksize -> mempool
Can't make a big block if we limit the mempool size.
Experience shows we need 4 X the mempool size vs blocksize.
2019-03-24 21:21:32 +01:00
TomZ c51790ee48 add newest unit test to the gitlab CI script 2019-03-24 11:55:39 +01:00
TomZ a8dd567006 Add unit test for the ring buffer class. 2019-03-24 11:43:43 +01:00
TomZ b0e57ffd7a Make UTXO able to handle much larger blocks.
Checking if my database file is full can not be assumed to only happen
on end-of-block if blocks get really large.
I'm taking a small performance hit to check this on insert and
flushSomeNodesToDisk on a more regular basis.
2019-03-24 10:23:52 +01:00
TomZ 6b29387801 Move NetworkManager unit test to own executable 2019-03-24 10:23:52 +01:00
TomZ b8cf859fa6 Upgrade NWM to use ringbuffers
for internal purposes the network manager used std::list instances
for things that essentially were FIFO queues.
With high volume of packages being sent this causes a large overhead
and even a crash or two.
So I replaced them with ringbuffers which means that the normal
sending
of data will remove a large selection of mem allocations.
2019-03-24 10:23:52 +01:00
TomZ bcc454f1c6 Add some useful log output 2019-03-23 19:31:31 +01:00
TomZ f6c3efa33e Fixlet (speedup) 2019-03-23 19:31:18 +01:00
TomZ 54c565fdd8 DB files start at 1 2019-03-23 19:24:20 +01:00
TomZ 038f17bbaa Avoid calling logger during shutdown 2019-03-23 19:24:07 +01:00
TomZ e535d39ced Account for rounding errors. 2019-03-21 21:44:14 +01:00
TomZ 05a5af0d34 add parameter interaction max/accept blocksize 2019-03-21 18:43:00 +01:00
TomZ 309616a57d Move processing of big blocks into its own thread.
The txVulcano wallet is currently really not fast,
so this code made the first mistake of network programming;
a big task was handled blocking the network handling.
The workerthread eventqueue is now used for this.
2019-03-19 21:47:28 +01:00
TomZ 98075819c7 Make tx-generation work more reliable.
As we don't intent to have a perfect wallet on this side, the
transactions failing to validate on the Node is a direct effect and
expected and Ok. As such the client is now more tolerant.
2019-03-19 21:46:34 +01:00
TomZ 9e0ea72bb8 Make txVulcano have user-defined limits
So we generate blocks in pre-defined sizes and we can stop after N
transactions have been created.
2019-03-18 13:45:57 +01:00
TomZ 0eb2c114c9 Make txVulcano link if upnp found 2019-03-18 11:50:33 +01:00
TomZ 5424dce05b Merge branch 'txVulcano' 2019-03-17 23:00:04 +01:00
TomZ 857315c743 Introduce new app txVulcano
This is a partial app which has as goal to generate transactions
and fill up blocks. A needed tool to test bigger blocks.

Secondairy goal is to test the Hub APIs in actual production
setting.
2019-03-17 22:52:09 +01:00
TomZ 9c920d1f70 Extend GetBlock API call
Allow interpretation of data to make it easier to
process by remote and less data to send.
2019-03-17 22:49:46 +01:00
TomZ 3fa2ac225f Make easier for user.
In applications we typically set a debug section
that is the default for that application so devs
can just call logInfo() without any arguments and
get the debug section for his app.
This now works with MessageParser::debugMessage() as well.
2019-03-17 22:49:46 +01:00
TomZ ec0673187c Add new BlockNotificationService 2019-03-17 22:49:46 +01:00
TomZ 8713914c47 Refactor to create a new baseclass for services
A NetworkSubscriptionService baseclass that creates
some metadata for each connection that uses the service.
2019-03-17 22:49:46 +01:00
TomZ a2b9f23246 Make generate() available through the API
This is a regtest only method, so limited usage.
2019-03-17 22:49:46 +01:00
TomZ 4c7d0010cc Make getBlock always return a height and hash
Also work on error reporting to remote.
2019-03-17 22:49:46 +01:00
TomZ 5bd599a1ed Expand GetBlock API call
Add a filter option to allow clients to send addresses
and match outputs against those bitcoin addresses so
only transactions that spend those outputs match will
be incuded in the result.

Add a session state so clients can send a filter
and just reuse that filter in subsequent calls.
2019-03-17 22:49:46 +01:00
TomZ 7d6760c49d Introduce new GetBlock API call
Demote the old RPC one to Legacy.
The old is still useful as it allows the 'verbose' version, but it uses
lots of deprecated tech and thus doesn't scale.
2019-03-17 22:49:46 +01:00
TomZ 504311d13c Merge branch '2019.01' 2019-03-17 22:38:24 +01:00
TomZ 1dd50ca837 For virtual block validation (&mining);
Validate both interblock-spents and double spends.
2019-03-17 22:24:21 +01:00
TomZ e729a59817 Fix APIRPC bytecount for sendRawTransaction
The full hash is returned.
2019-03-17 22:24:07 +01:00