Commit Graph

17072 Commits

Author SHA1 Message Date
Jack Grigg 3ed999c397 qa: Import Rust crate audits from Firefox 2023-01-10 14:54:54 +00:00
str4d 164e090a1b
Merge pull request #6310 from str4d/6307-backport-mempool-packages
Backport mempool package tracking
2023-01-09 17:06:04 +00:00
Jack Grigg 73a43638b1 qa: Update mempool_packages RPC test after deprecation ratcheting 2023-01-09 10:30:33 +00:00
Jack Grigg a33b8529ff Merge branch 'master' into 6307-backport-mempool-packages 2023-01-06 23:55:37 +00:00
Kris Nuttycombe 20996b4eb7
Merge pull request #6282 from str4d/ratchet-feature-deprecation
Ratchet feature deprecation
2023-01-06 11:58:27 -07:00
Jack Grigg 5cc15a881a qa: Change show_help RPC test to print out differences 2023-01-05 22:32:19 +00:00
Jack Grigg 0ff86213ce Deprecate old hash fields of `getblocktemplate` 2023-01-05 22:32:19 +00:00
Jack Grigg 09cd65327b Disable previously-deprecated features by default
These features were deprecated at least 3 minor releases ago. I found
one mistake which was that `z_validateaddress` had not been placed
behind the `addrtype` deprecated feature; this has been fixed.
2023-01-05 22:32:19 +00:00
str4d 7b1fce45d6
Merge pull request #6314 from str4d/6306-fix-iterator-type
txdb: Remove const annotation from blockinfo iterator type
2023-01-03 23:08:59 +00:00
Jack Grigg a31252a8d8 txdb: Clean up for loop syntax in `WriteBatchSync` 2023-01-03 19:55:05 +00:00
Jack Grigg 37921677e9 Remove `zcraw*` RPC methods 2023-01-03 12:35:53 +00:00
Jack Grigg ad8bd0d254 qa: Refactor `wallet_deprecation` test to simplify deprecation changes 2023-01-03 12:35:53 +00:00
Jack Grigg 2651451454 Remove `dumpwallet` RPC method
The RPC method handler is left in as a tombstone, to redirect callers to
the replacement method (as this is an upstream Bitcoin Core RPC method
that users may expect to be present).
2023-01-03 12:35:52 +00:00
Jack Grigg fb7eb1dad6 txdb: Remove const annotation from blockinfo iterator type
The const annotation was removed from the blockinfo type in
zcash/zcash#6192, but not from the type of its iterator. Recent Clang
versions are able to handle this, but GCC 11 (and it appears older Clang
versions) raise an error.

Closes zcash/zcash#6306.
2023-01-03 12:07:47 +00:00
str4d ca85cfbab3
Merge pull request #6244 from sellout/txbuilder-std-fee
Modify TransactionBuilder to use the standard default fee.
2022-12-19 21:03:38 +00:00
Suhas Daftuar ca514c655c Fix mempool package tracking edge case
CalculateMemPoolAncestors was always looping over a transaction's inputs
to find in-mempool parents.  When adding a new transaction, this is the
correct behavior, but when removing a transaction, we want to use the
ancestor set that would be calculated by walking mapLinks (which should
in general be the same set, except during a reorg when the mempool is
in an inconsistent state, and the mapLinks-based calculation would be the
correct one).

(cherry picked from commit bitcoin/bitcoin@60de0d5826)
2022-12-19 05:38:49 +00:00
Suhas Daftuar ef14b8ba60 Add test showing bug in mempool packages
(cherry picked from commit bitcoin/bitcoin@598b25d5ee)
2022-12-19 05:38:49 +00:00
Suhas Daftuar b63c58500a Track transaction packages in CTxMemPoolEntry
Associate with each CTxMemPoolEntry all the size/fees of descendant
mempool transactions.  Sort mempool by max(feerate of entry, feerate
of descendants).  Update statistics on-the-fly as transactions enter
or leave the mempool.

Also add ancestor and descendant limiting, so that transactions can
be rejected if the number or size of unconfirmed ancestors exceeds
a target, or if adding a transaction would cause some other mempool
entry to have too many (or too large) a set of unconfirmed in-
mempool descendants.

(cherry picked from commit bitcoin/bitcoin@5add7a74a6)

Zcash:
- Mempool methods were adapted to our mempool changes.
- Default ancestor and descendant size limits were double to account for
  our larger block size.
- The mempool_packages RPC test fee was adapted to account for our
  emissions curve (which results in a smaller per-block reward that
  needs to be split into smaller shards for sequential transactions.
- Includes some modifications to account for us backporting
  bitcoin/bitcoin@f3fe83673e early in
  zcash/zcash#5269.
2022-12-19 05:38:43 +00:00
str4d 3ea9989414
Merge pull request #6249 from sellout/fetch-params-lock
Scope the fetch-params lock file to the user
2022-12-15 19:57:31 +00:00
str4d 1f7553d753
Merge pull request #6228 from sandakersmann/patch-1
Hardened checkpoint update at block 1860000 for mainnet
2022-12-15 19:40:00 +00:00
Greg Pfeil 3a7433b844
Merge pull request #6303 from sellout/missing-newline
Fix a missing newline in the RPC docs
2022-12-12 19:12:48 -07:00
Greg Pfeil 1f401b39cc Fix a missing newline in the RPC docs 2022-12-12 15:01:21 -10:00
Kris Nuttycombe 4bc92bf7cb
Merge pull request #6242 from sellout/transaction-strategy
Add operations to TransactionStrategy
2022-12-12 09:22:25 -07:00
Kris Nuttycombe 80a1366a05
Merge pull request #6265 from sellout/any_taddr-sans-coinbase
Don’t select transparent coinbase with ANY_TADDR
2022-12-12 09:18:32 -07:00
Kris Nuttycombe 121f84c122
Merge pull request #6300 from daira/tl-expected-followup
tl::expected follow-up to address @str4d's comments
2022-12-12 08:17:55 -07:00
Daira Hopwood 619456a4f4 tl::expected follow-up to address @str4d's comments.
Co-authored-by: Jack Grigg <jack@electriccoin.co>
Signed-off-by: Daira Hopwood <daira@jacaranda.org>
2022-12-09 01:36:45 +00:00
Daira Hopwood 11d5639049
Merge pull request #6138 from daira/tl-expected
Add tl::expected and some examples of its use
2022-12-08 22:19:57 +00:00
Daira Hopwood d502714326 Refactor HaveShieldedRequirements to use tl::expected (example with a void T)
and rename it to CheckShieldedRequirements.

Signed-off-by: Daira Hopwood <jacaranda.org>
2022-12-08 20:53:54 +00:00
Daira Hopwood 4de0d85abf The std::expected proposal has unnecessary instances of undefined behaviour
for operator->, operator*, and error(). Make these into assertion failures
(this still conforms to the proposal).

Signed-off-by: Daira Hopwood <daira@jacaranda.org>
2022-12-08 20:53:54 +00:00
Daira Hopwood 7472b0dbca Add tl::expected. refs #4816
Signed-off-by: Daira Hopwood <daira@jacaranda.org>
2022-12-08 20:53:54 +00:00
Kris Nuttycombe 8b16094f66
Merge pull request #6284 from janisozaur/patch-1
Update debian/compat to version 13
2022-12-08 13:08:22 -07:00
Kris Nuttycombe 26df6834ca
Merge pull request #6243 from sellout/extract-memo
Factor out memo parsing from asyncrpcoperation_sendmany
2022-12-08 13:07:33 -07:00
Greg Pfeil 54ecf53619
Update src/wallet/asyncrpcoperation_sendmany.cpp
Co-authored-by: Kris Nuttycombe <kris.nuttycombe@gmail.com>
2022-12-07 15:22:11 -07:00
Greg Pfeil 69d7f5b5fd
Merge pull request #6298 from sellout/docker-entrypoint
Fix a minor bug in docker/entrypoint.sh
2022-12-07 15:14:05 -07:00
Greg Pfeil 747a6b6acc Add release notes 2022-12-07 12:31:07 -07:00
Greg Pfeil cf720fcf0f Apply suggestions from code review
Co-authored-by: Daira Hopwood <daira@jacaranda.org>
2022-12-07 12:31:07 -07:00
Greg Pfeil 7e6c53323a Improve PrivacyPolicy comments
Co-authored-by: Daira Hopwood <daira@jacaranda.org>
2022-12-07 11:09:27 -07:00
Greg Pfeil 4cd627a985 Merge branch 'master' into fetch-params-lock 2022-12-06 21:00:50 -07:00
Greg Pfeil 6a7b67c06d Fix a minor bug in docker/entrypoint.sh
Fixes #6297.
2022-12-06 17:18:18 -07:00
Greg Pfeil 4cff6f80c6 Apply suggestions from code review
Co-authored-by: Daira Hopwood <daira@jacaranda.org>
2022-12-06 15:23:55 -07:00
Kris Nuttycombe 9c600a5582 Factor out memo parsing from asyncrpcoperation_sendmany 2022-12-06 15:23:55 -07:00
Greg Pfeil 196af70eaa
Merge pull request #6294 from sellout/appease-shellcheck
Appease ShellCheck
2022-12-06 15:08:43 -07:00
Greg Pfeil 7cb61508b1 Defer fixing docker/entrypoint.sh lint failure 2022-12-06 13:46:00 -07:00
Greg Pfeil 4946316537 Appease ShellCheck
ShellCheck has started failing in CI. My guess is that the ubuntu-latest runner
now uses a `/bin/sh` that is actually Bash.

- excludes checksec.sh, as it’s not our code
- fixes lints in other files
2022-12-06 10:46:43 -07:00
Daira Hopwood e870334d04
Merge pull request #6267 from rex4539/typos
Fix typos
2022-12-06 17:39:20 +00:00
Greg Pfeil e91aa37b6e
Apply suggestions from code review
Co-authored-by: Daira Hopwood <daira@jacaranda.org>
2022-12-06 00:08:08 -07:00
Greg Pfeil 1341a7639e
Apply suggestions from code review
Co-authored-by: Daira Hopwood <daira@jacaranda.org>
2022-12-05 23:33:27 -07:00
str4d 826e0dccb1
Merge pull request #6273 from sellout/utfcpp-include
Put utf8.h in the correct place
2022-12-06 00:08:03 +00:00
str4d 22c4653d6e
Merge pull request #6285 from daira/merge-5.3.2
Merge hotfix-v5.3.2 back to master
2022-12-05 23:55:04 +00:00
Daira Hopwood 346131a6d1 Merge branch 'hotfix-v5.3.2' of github.com:zcash/zcash 2022-12-05 22:33:17 +00:00