dash/src
pasta 3d5dc160d8
Some checks failed
Guix Build / build-image (push) Failing after 6m2s
Guix Build / build (aarch64-linux-gnu) (push) Has been skipped
Guix Build / build (arm-linux-gnueabihf) (push) Has been skipped
Guix Build / build (arm64-apple-darwin) (push) Has been skipped
Guix Build / build (powerpc64-linux-gnu) (push) Has been skipped
Guix Build / build (riscv64-linux-gnu) (push) Has been skipped
Guix Build / build (x86_64-apple-darwin) (push) Has been skipped
Guix Build / build (x86_64-linux-gnu) (push) Has been skipped
Guix Build / build (x86_64-w64-mingw32) (push) Has been skipped
Check Merge Fast-Forward Only / check_merge (push) Successful in 1m49s
Label Merge Conflicts / main (push) Failing after 40s
CI / Build Image (push) Failing after 15m29s
CI / Build Dependencies (arm-linux, arm-linux-gnueabihf) (push) Has been cancelled
CI / Build Dependencies (linux64, x86_64-pc-linux-gnu) (push) Has been cancelled
CI / Build (arm-linux, arm-linux, arm-linux-gnueabihf) (push) Has been cancelled
CI / Build (linux64, linux64, x86_64-pc-linux-gnu) (push) Has been cancelled
CI / Build (linux64_cxx20, linux64, x86_64-pc-linux-gnu) (push) Has been cancelled
CI / Build (linux64_fuzz, linux64, x86_64-pc-linux-gnu) (push) Has been cancelled
CI / Build (linux64_nowallet, linux64, x86_64-pc-linux-gnu) (push) Has been cancelled
CI / Build (linux64_sqlite, linux64, x86_64-pc-linux-gnu) (push) Has been cancelled
CI / Build (linux64_tsan, linux64, x86_64-pc-linux-gnu) (push) Has been cancelled
CI / Build (linux64_ubsan, linux64, x86_64-pc-linux-gnu) (push) Has been cancelled
Merge #6462: backport: merge bitcoin#23092, #23005, #24704, #24391, #25338, #25422, #25493, #26826, #26814, #26832, #27418, partial bitcoin#27254 (compat backports)
2ab561d281 partial bitcoin#27254: Extract util/fs from util/system (Kittywhiskers Van Gogh)
280988bee3 merge bitcoin#27418: Remove windows workaround in authproxy (Kittywhiskers Van Gogh)
a497df0339 merge bitcoin#26832: move (win) S_* defines into bdb (Kittywhiskers Van Gogh)
db676a7e5f merge bitcoin#26814: remove windows-only compat.h usage in random (Kittywhiskers Van Gogh)
94e6637c33 merge bitcoin#26826: remove windows-only compat.h usage in randomenv (Kittywhiskers Van Gogh)
bbb0cceb7a merge bitcoin#25493: document code in compat.h (Kittywhiskers Van Gogh)
3f143096c8 merge bitcoin#25422: globally define NOMINMAX when building with mingw-w64 (Kittywhiskers Van Gogh)
000495df8e merge bitcoin#25338: Avoid incompatibility with CMake AUTOUIC feature (Kittywhiskers Van Gogh)
714ea55dbe build: migrate stacktrace-related flags to `DEBUG_`{`C`,`CXX`}`FLAGS` (Kittywhiskers Van Gogh)
11323c3851 merge bitcoin#24391: stop overriding user autoconf flags (Kittywhiskers Van Gogh)
548121d366 merge bitcoin#24704: remove strnlen back-compat code (Kittywhiskers Van Gogh)
b65038ec94 merge bitcoin#23005: Delay wallet client construction (Kittywhiskers Van Gogh)
f3b065cd9c merge bitcoin#23092: Remove Windows workaround in authproxy (WinError 10053) (Kittywhiskers Van Gogh)

Pull request description:

  ## Additional Information

  * This PR originally included [bitcoin#27378](https://github.com/bitcoin/bitcoin/pull/27378) but including it caused multiple tests to fail ([build](https://gitlab.com/dashpay/dash/-/jobs/8577987174#L2224)), even after adjusting `timeout`. It has been omitted instead.

    <details>

    <summary>Test failures:</summary>

    ```
    feature_abortnode.py                               |   Failed  | 201 s
    feature_dip3_v19.py                                |   Failed  | 237 s
    feature_llmq_rotation.py                           |   Failed  | 54 s
    p2p_invalid_messages.py                            |   Failed  | 5 s
    rpc_bind.py --nonloopback                          |   Failed  | 63 s
    wallet_multiwallet.py --descriptors                |   Failed  | 79 s
    wallet_multiwallet.py --legacy-wallet              |   Failed  | 89 s

    ALL                                                |   Failed  | 8540 s (accumulated)
    ```

    </details>

    <details>

    <summary>feature_abortnode.py failure:</summary>

    ```
    dash@107cfae2b2b5:/src/dash$ ./test/functional/feature_abortnode.py
    2024-12-09T18:31:01.776000Z TestFramework (INFO): PRNG seed is: 6843309100291447752
    2024-12-09T18:31:01.776000Z TestFramework (INFO): Initializing test directory /tmp/dash_func_test_fcijb99n
    2024-12-09T18:31:02.802000Z TestFramework (INFO): Waiting for crash
    2024-12-09T18:34:23.026000Z TestFramework.utils (ERROR): wait_until() failed. Predicate: ''''
        def is_node_stopped(self):
            """Checks whether the node has stopped.

            Returns True if the node has stopped. False otherwise.
            This method is responsible for freeing resources (self.process)."""
            if not self.running:
                return True
            return_code = self.process.poll()
            if return_code is None:
                return False

            # process has stopped. Assert that it didn't return an error code.
            assert return_code == 0, self._node_msg(
                "Node returned non-zero exit code (%d) when stopping" % return_code)
            self.running = False
            self.process = None
            self.rpc_connected = False
            self.rpc = None
            self.log.debug("Node stopped")
            return True
    '''
    2024-12-09T18:34:23.027000Z TestFramework (ERROR): Assertion failed
    Traceback (most recent call last):
      File "/src/dash/test/functional/test_framework/test_framework.py", line 161, in main
        self.run_test()
      File "/src/dash/./test/functional/feature_abortnode.py", line 44, in run_test
        self.nodes[0].wait_until_stopped(timeout=200)
      File "/src/dash/test/functional/test_framework/test_node.py", line 414, in wait_until_stopped
        wait_until_helper(self.is_node_stopped, timeout=timeout, timeout_factor=self.timeout_factor)
      File "/src/dash/test/functional/test_framework/util.py", line 287, in wait_until_helper
        raise AssertionError("Predicate {} not true after {} seconds".format(predicate_source, timeout))
    AssertionError: Predicate ''''
        def is_node_stopped(self):
            """Checks whether the node has stopped.

            Returns True if the node has stopped. False otherwise.
            This method is responsible for freeing resources (self.process)."""
            if not self.running:
                return True
            return_code = self.process.poll()
            if return_code is None:
                return False

            # process has stopped. Assert that it didn't return an error code.
            assert return_code == 0, self._node_msg(
                "Node returned non-zero exit code (%d) when stopping" % return_code)
            self.running = False
            self.process = None
            self.rpc_connected = False
            self.rpc = None
            self.log.debug("Node stopped")
            return True
    ''' not true after 200.0 seconds
    2024-12-09T18:34:23.530000Z TestFramework (INFO): Stopping nodes
    2024-12-09T18:34:23.530000Z TestFramework (ERROR): Unexpected exception caught during shutdown
    Traceback (most recent call last):
      File "/src/dash/test/functional/test_framework/test_framework.py", line 341, in shutdown
        self.stop_nodes()
      File "/src/dash/test/functional/test_framework/test_framework.py", line 673, in stop_nodes
        node.stop_node(expected_stderr=expected_stderr, wait=wait, wait_until_stopped=False)
      File "/src/dash/test/functional/test_framework/test_node.py", line 368, in stop_node
        self.stop(wait=wait)
      File "/src/dash/test/functional/test_framework/coverage.py", line 49, in __call__
        return_val = self.auth_service_proxy_instance.__call__(*args, **kwargs)
      File "/src/dash/test/functional/test_framework/authproxy.py", line 124, in __call__
        response, status = self._request('POST', self.__url.path, postdata.encode('utf-8'))
      File "/src/dash/test/functional/test_framework/authproxy.py", line 103, in _request
        return self._get_response()
      File "/src/dash/test/functional/test_framework/authproxy.py", line 162, in _get_response
        raise JSONRPCException(
    test_framework.authproxy.JSONRPCException: non-JSON HTTP response with '503 Service Unavailable' from server (-342)
    2024-12-09T18:34:23.531000Z TestFramework (WARNING): Not cleaning up dir /tmp/dash_func_test_fcijb99n
    2024-12-09T18:34:23.531000Z TestFramework (ERROR): Test failed. Test logging available at /tmp/dash_func_test_fcijb99n/test_framework.log
    2024-12-09T18:34:23.531000Z TestFramework (ERROR):
    2024-12-09T18:34:23.531000Z TestFramework (ERROR): Hint: Call /src/dash/test/functional/combine_logs.py '/tmp/dash_func_test_fcijb99n' to consolidate all logs
    2024-12-09T18:34:23.531000Z TestFramework (ERROR):
    2024-12-09T18:34:23.531000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
    2024-12-09T18:34:23.531000Z TestFramework (ERROR): https://github.com/dashpay/dash/issues
    2024-12-09T18:34:23.531000Z TestFramework (ERROR):
    [node 1] Cleaning up leftover process
    [node 0] Cleaning up leftover process
    ```

    </details>

  * [bitcoin#27254](https://github.com/bitcoin/bitcoin/pull/27254) has been partially backported to include a missing header to allow it to build.

    <details>

    <summary>Compile error:</summary>

    ```
    In file included from ./util/system.h:19,
                   from util/system.cpp:7:
    ./compat/assumptions.h:49:22: error: 'size_t' was not declared in this scope; did you mean 'std::size_t'?
       49 | static_assert(sizeof(size_t) == 4 || sizeof(size_t) == 8, "size_t assumed to be 32-bit or 64-bit");
          |                      ^~~~~~
          |                      std::size_t
    In file included from /usr/include/c++/11/limits:42,
                   from ./compat/assumptions.h:11,
                   from ./util/system.h:19,
                   from util/system.cpp:7:
    /usr/include/x86_64-linux-gnu/c++/11/bits/c++config.h:280:33: note: 'std::size_t' declared here
      280 |   typedef __SIZE_TYPE__         size_t;
          |                                 ^~~~~~
    ```

    </details>

  * ~~GitLab job failures as of 2339ae6459cad77d94795c0e92ba3f3fe31c485a, for `linux64-build` ([source](https://gitlab.com/dashpay/dash/-/jobs/8590291130#L4621)), `linux64_cxx20-build` ([source](https://gitlab.com/dashpay/dash/-/jobs/8590291134#L3497)) and `linux64_sqlite-build` ([source](https://gitlab.com/dashpay/dash/-/jobs/8590291137#L3489)) are not related to failures in compilation or unit tests but are to do with reaching the artifact limit.~~ Resolved with [dash#6487](https://github.com/dashpay/dash/pull/6487), thanks Udjin!

  ## Breaking Changes

  None expected.

  ## Checklist

  - [x] I have performed a self-review of my own code
  - [x] I have commented my code, particularly in hard-to-understand areas **(note: N/A)**
  - [x] I have added or updated relevant unit/integration/functional/e2e tests
  - [x] I have made corresponding changes to the documentation **(note: N/A)**
  - [x] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_

ACKs for top commit:
  UdjinM6:
    utACK 2ab561d281
  PastaPastaPasta:
    utACK 2ab561d281

Tree-SHA512: 6d05305f17fd607ed93b4a2e00de195a96bde1a34bedf04f6dd84892dc71028ae71590fa5063026ec7ff728d6e411af410c363b4a88947ce6e5999d4431bb29b
2024-12-15 12:30:54 -06:00
..
bench merge bitcoin#24662: Use system time instead of adjusted network time 2024-12-08 15:23:29 +00:00
bls feat: mnauth always use basic scheme 2024-12-09 14:36:49 -06:00
coinjoin Merge #6449: refactor: pass CWallet reference to CTransactionBuilder 2024-12-10 09:46:31 -06:00
common merge bitcoin#23137: move-only bloom to src/common 2024-10-25 21:36:52 +00:00
compat partial bitcoin#27254: Extract util/fs from util/system 2024-12-15 09:08:55 +00:00
config
consensus revert: Revert "feat: re-bury DIP0024 with new height when quorums actually appeared" 2024-12-14 12:50:39 +03:00
crc32c Merge bitcoin/bitcoin#29493: subtree: update crc32c subtree 2024-10-24 11:16:20 -05:00
crypto Merge bitcoin/bitcoin#30097: crypto: disable asan for sha256_sse4 with clang and -O0 2024-10-25 15:30:56 -05:00
dashbls build: stop tracking cmake dependency relic_conf.h.in 2024-12-04 16:06:30 +00:00
evo Merge #6325: feat: start DIP0024 from block 1 - fire up test chains by first block - 7/n 2024-12-10 09:43:02 -06:00
governance merge bitcoin#25499: Use steady clock for all millis bench logging 2024-12-09 19:05:47 +00:00
gsl fix: optimize includes in gsl/pointer.h to speed up compile time 2024-08-26 16:16:31 +07:00
immer build: drop symlinks in immer subtree 2024-11-02 20:19:50 +00:00
index merge bitcoin#25338: Avoid incompatibility with CMake AUTOUIC feature 2024-12-15 09:08:22 +00:00
init merge bitcoin#25338: Avoid incompatibility with CMake AUTOUIC feature 2024-12-15 09:08:22 +00:00
interfaces merge bitcoin#23005: Delay wallet client construction 2024-12-15 09:08:21 +00:00
ipc Merge bitcoin/bitcoin#22218: multiprocess: Add ipc::Context and ipc::capnp::Context structs 2024-08-14 12:12:50 +07:00
leveldb Merge bitcoin/bitcoin#26209: Update leveldb subtree 2024-03-05 10:40:36 -06:00
llmq merge bitcoin#25338: Avoid incompatibility with CMake AUTOUIC feature 2024-12-15 09:08:22 +00:00
logging merge bitcoin#22872: improve checkaddrman logging with duration in milliseconds 2024-09-03 14:57:48 +00:00
masternode merge bitcoin#25338: Avoid incompatibility with CMake AUTOUIC feature 2024-12-15 09:08:22 +00:00
minisketch depends: update 'src/minisketch' to sipa/minisketch@eb37a9b8 as ef10e83d 2024-10-29 10:16:07 +00:00
node merge bitcoin#25338: Avoid incompatibility with CMake AUTOUIC feature 2024-12-15 09:08:22 +00:00
policy Merge #6435: backport: bitcoin#24281, 24360, 24347, 24376, 24370, 24305 2024-12-09 15:45:55 -06:00
primitives merge bitcoin#24136: Extract CTxIn::MAX_SEQUENCE_NONFINAL constant, rework BIP 65/68/112 docs 2024-10-28 10:45:28 +00:00
qt merge bitcoin#25493: document code in compat.h 2024-12-15 09:08:55 +00:00
rpc Merge #6479: feat: enable coverage linter for functional tests 2024-12-15 12:12:40 -06:00
script merge bitcoin#22951: move amount.h into consensus 2024-10-25 16:00:12 +00:00
secp256k1 merge bitcoin#27479: BIP324: ElligatorSwift integrations 2023-11-21 07:59:03 -06:00
stats merge bitcoin#25493: document code in compat.h 2024-12-15 09:08:55 +00:00
support merge bitcoin#25422: globally define NOMINMAX when building with mingw-w64 2024-12-15 09:08:22 +00:00
test Merge #6462: backport: merge bitcoin#23092, #23005, #24704, #24391, #25338, #25422, #25493, #26826, #26814, #26832, #27418, partial bitcoin#27254 (compat backports) 2024-12-15 12:30:54 -06:00
univalue Merge bitcoin/bitcoin#30464: test, refactor: Fix MSVC warning C4101 "unreferenced local variable" 2024-09-27 12:52:15 -05:00
util merge bitcoin#25493: document code in compat.h 2024-12-15 09:08:55 +00:00
wallet merge bitcoin#26832: move (win) S_* defines into bdb 2024-12-15 09:08:55 +00:00
zmq merge bitcoin#23524: Fix typos in endif header comments 2024-12-04 15:55:10 +00:00
.clang-format Merge #21221: [tools] Allow argument/parameter bin packing in clang-format 2024-04-11 02:25:07 +07:00
addrdb.cpp merge bitcoin#25499: Use steady clock for all millis bench logging 2024-12-09 19:05:47 +00:00
addrdb.h merge bitcoin#22910: Encapsulate asmap in NetGroupManager 2024-09-03 14:57:50 +00:00
addressindex.cpp chore: run contrib/devtools/copyright_header.py update . 2024-10-05 23:17:41 +03:00
addressindex.h merge bitcoin#22951: move amount.h into consensus 2024-10-25 16:00:12 +00:00
addrman_impl.h merge bitcoin#24662: Use system time instead of adjusted network time 2024-12-08 15:23:29 +00:00
addrman.cpp merge bitcoin#24662: Use system time instead of adjusted network time 2024-12-08 15:23:29 +00:00
addrman.h merge bitcoin#24662: Use system time instead of adjusted network time 2024-12-08 15:23:29 +00:00
arith_uint256.cpp Merge bitcoin/bitcoin#24059: Fix implicit-integer-sign-change in arith_uint256 2024-02-28 13:16:39 -06:00
arith_uint256.h Merge bitcoin/bitcoin#24854: Remove not needed ArithToUint256 roundtrips in tests 2024-01-13 19:32:31 -06:00
attributes.h Merge bitcoin/bitcoin#27575: Introduce platform-agnostic ALWAYS_INLINE macro 2024-10-25 09:59:35 -05:00
banman.cpp merge bitcoin#25338: Avoid incompatibility with CMake AUTOUIC feature 2024-12-15 09:08:22 +00:00
banman.h merge bitcoin#23524: Fix typos in endif header comments 2024-12-04 15:55:10 +00:00
base58.cpp Merge #20813: scripted-diff: Bump copyright headers 2024-04-10 03:19:34 +07:00
base58.h Merge #20813: scripted-diff: Bump copyright headers 2024-04-10 03:19:34 +07:00
batchedlogger.cpp merge bitcoin#25202: Use severity-based logging for leveldb/libevent messages, reverse LogPrintLevel order 2024-11-24 08:58:59 +00:00
batchedlogger.h merge bitcoin#23524: Fix typos in endif header comments 2024-12-04 15:55:10 +00:00
bech32.cpp Merge bitcoin/bitcoin#22579: doc: Add references for the generator/constant used in Bech32(m) 2024-10-04 14:59:02 +05:30
bech32.h
bip324.cpp merge bitcoin#28433: Follow-up to BIP324 connection support 2024-09-20 12:24:22 +00:00
bip324.h merge bitcoin#28433: Follow-up to BIP324 connection support 2024-09-20 12:24:22 +00:00
bitcoin-cli.cpp merge bitcoin#25493: document code in compat.h 2024-12-15 09:08:55 +00:00
bitcoin-tx.cpp merge bitcoin#25493: document code in compat.h 2024-12-15 09:08:55 +00:00
bitcoin-wallet.cpp merge bitcoin#25493: document code in compat.h 2024-12-15 09:08:55 +00:00
bitcoind.cpp merge bitcoin#25493: document code in compat.h 2024-12-15 09:08:55 +00:00
blockencodings.cpp Merge #20813: scripted-diff: Bump copyright headers 2024-04-10 03:19:34 +07:00
blockencodings.h
blockfilter.cpp Merge bitcoin/bitcoin#27010: refactor: use Hash helpers for double-SHA256 calculations 2024-10-25 09:08:28 -05:00
blockfilter.h merge bitcoin#24832: Verify the block filter hash when reading the filter from disk 2024-10-15 06:58:51 +00:00
cachemap.h non-scripted-diff: bump copyright year to 2023 2024-02-24 11:05:37 -06:00
cachemultimap.h non-scripted-diff: bump copyright year to 2023 2024-02-24 11:05:37 -06:00
chain.cpp merge bitcoin#25349: CBlockIndex/CDiskBlockIndex improvements for safety, consistent behavior 2024-08-23 06:57:37 +00:00
chain.h Merge bitcoin/bitcoin#28691: refactor: Remove CBlockFileInfo::SetNull 2024-10-24 13:50:32 -05:00
chainparams.cpp revert: Revert "feat: re-bury DIP0024 with new height when quorums actually appeared" 2024-12-14 12:50:39 +03:00
chainparams.h refactor: pull LimitBlocksToTrace into CChainParams (reduce regtest to 100) 2024-10-29 12:53:47 -05:00
chainparamsbase.cpp feat: put DIP0024 activation to block 1 on RegTest 2024-12-05 17:10:32 +07:00
chainparamsbase.h Merge #20813: scripted-diff: Bump copyright headers 2024-04-10 03:19:34 +07:00
chainparamsseeds.h chore: update seeds 2024-11-20 11:33:06 -06:00
checkqueue.h merge bitcoin#25109: Strengthen AssertLockNotHeld assertions 2024-05-09 08:52:48 +00:00
clientversion.cpp Merge bitcoin/bitcoin#22715: wallet: use FormatFullVersion() & PACKAGE_NAME in dumpwallet 2024-05-24 13:30:00 -05:00
clientversion.h Merge bitcoin/bitcoin#22715: wallet: use FormatFullVersion() & PACKAGE_NAME in dumpwallet 2024-05-24 13:30:00 -05:00
coins.cpp Merge bitcoin/bitcoin#25663: tracing: do not use coin after move in CCoinsViewCache::AddCoin 2024-10-24 11:21:49 -05:00
coins.h Merge bitcoin/bitcoin#28913: coins: make sure PoolAllocator uses the correct alignment 2024-10-23 22:19:56 -05:00
compressor.cpp merge bitcoin#21817: Replace &foo[0] with foo.data() 2024-02-28 13:37:33 -06:00
compressor.h merge bitcoin#23413: Replace MakeSpan helper with Span deduction guide 2023-09-24 09:50:50 -05:00
context.h merge bitcoin#23524: Fix typos in endif header comments 2024-12-04 15:55:10 +00:00
core_io.h merge bitcoin#22951: move amount.h into consensus 2024-10-25 16:00:12 +00:00
core_memusage.h
core_read.cpp merge bitcoin#22875: Fix Racy ParseOpCode function initialization 2024-10-08 15:59:18 +00:00
core_write.cpp merge bitcoin#22951: move amount.h into consensus 2024-10-25 16:00:12 +00:00
ctpl_stl.h
cuckoocache.h Merge bitcoin/bitcoin#23626: refactor: Fix implicit-signed-integer-truncation in cuckoocache.h 2024-02-28 13:16:38 -06:00
cxxtimer.hpp fix: adjust doxygen for dash codebase for -Wdocumentation 2024-07-13 01:58:21 +07:00
dash-cli-res.rc Merge bitcoin/bitcoin#22724: windres: use PACKAGE_VERSION rather than building more version numbers 2024-09-27 15:35:12 -05:00
dash-tx-res.rc Merge bitcoin/bitcoin#22724: windres: use PACKAGE_VERSION rather than building more version numbers 2024-09-27 15:35:12 -05:00
dash-wallet-res.rc Merge bitcoin/bitcoin#22724: windres: use PACKAGE_VERSION rather than building more version numbers 2024-09-27 15:35:12 -05:00
dashd-res.rc Merge bitcoin/bitcoin#22724: windres: use PACKAGE_VERSION rather than building more version numbers 2024-09-27 15:35:12 -05:00
dbwrapper.cpp merge bitcoin#25202: Use severity-based logging for leveldb/libevent messages, reverse LogPrintLevel order 2024-11-24 08:58:59 +00:00
dbwrapper.h fix: adjust doxygen for dash codebase for -Wdocumentation 2024-07-13 01:58:21 +07:00
deploymentinfo.cpp feat: new fork WITHDRAWALS introduced 2024-10-08 03:15:53 +07:00
deploymentinfo.h Merge bitcoin/bitcoin#19438: Introduce deploymentstatus 2023-12-01 09:08:50 -06:00
deploymentstatus.cpp Merge bitcoin/bitcoin#22597: consensus/params: simplify ValidDeployment check to avoid gcc warning 2024-08-09 16:59:39 +07:00
deploymentstatus.h Merge bitcoin/bitcoin#22385: refactor: Use DeploymentEnabled to hide VB deployments 2024-08-09 14:50:07 +07:00
dsnotificationinterface.cpp refactor: move PeerManager out of CInstantSendManager ctor 2024-12-05 22:42:15 +00:00
dsnotificationinterface.h refactor: make pdsNotificationInterface a unique_ptr, rename 2024-09-13 13:06:22 +00:00
dummywallet.cpp Merge #14582: wallet: always do avoid partial spends if fees are within a specified range 2024-03-18 16:01:38 +07:00
flat-database.h merge bitcoin#25499: Use steady clock for all millis bench logging 2024-12-09 19:05:47 +00:00
flatfile.cpp merge bitcoin#22937: Forbid calling unsafe fs::path(std::string) constructor and fs::path::string() method 2024-08-06 18:00:38 +00:00
flatfile.h Merge bitcoin/bitcoin#27289: Refactor: Remove unused FlatFilePos::SetNull 2024-10-24 15:16:39 -05:00
fs.cpp merge bitcoin#25422: globally define NOMINMAX when building with mingw-w64 2024-12-15 09:08:22 +00:00
fs.h Merge #6213: backport: trivial 2024 08 14 2024-08-21 09:00:07 -05:00
hash_x11.h fmt: run clang-format on hash_x11.h 2024-10-04 15:35:45 -05:00
hash.cpp partial bitcoin#19953: Implement BIP 340-342 validation 2024-10-27 19:38:29 +00:00
hash.h partial bitcoin#19953: Implement BIP 340-342 validation 2024-10-27 19:38:29 +00:00
httprpc.cpp merge bitcoin#25619: avoid overriding non-virtual ToString() in CService and use better naming 2024-09-11 16:18:46 +00:00
httprpc.h merge bitcoin#23524: Fix typos in endif header comments 2024-12-04 15:55:10 +00:00
httpserver.cpp merge bitcoin#25338: Avoid incompatibility with CMake AUTOUIC feature 2024-12-15 09:08:22 +00:00
httpserver.h feat: change handler to '/' for external users, use only rpc user name to choose queue 2024-06-07 16:31:07 +07:00
i2p.cpp merge bitcoin#25493: document code in compat.h 2024-12-15 09:08:55 +00:00
i2p.h merge bitcoin#25493: document code in compat.h 2024-12-15 09:08:55 +00:00
indirectmap.h
init.cpp merge bitcoin#25338: Avoid incompatibility with CMake AUTOUIC feature 2024-12-15 09:08:22 +00:00
init.h Merge bitcoin/bitcoin#22216: refactor: Make SetupServerArgs callable without NodeContext 2024-08-28 01:09:45 +07:00
key_io.cpp Merge #20832: rpc: Better error messages for invalid addresses 2024-02-01 11:09:04 -06:00
key_io.h Merge #20832: rpc: Better error messages for invalid addresses 2024-02-01 11:09:04 -06:00
key.cpp merge bitcoin#23595: Add ParseHex<std::byte>() helper 2024-10-29 07:52:53 +00:00
key.h merge bitcoin#23595: Add ParseHex<std::byte>() helper 2024-10-29 07:52:53 +00:00
limitedmap.h
logging.cpp merge bitcoin#25614: Severity-based logging, step 2 2024-11-24 08:59:00 +00:00
logging.h refactor: sping LogAcceptCategory and LogAcceptDebug 2024-12-04 21:28:01 +03:00
Makefile.am merge bitcoin#25493: document code in compat.h 2024-12-15 09:08:55 +00:00
Makefile.bench.include Merge #6321: backport: trivial 2024 10 08 2024-10-22 09:12:06 -05:00
Makefile.crc32c.include Merge bitcoin/bitcoin#23082: build: improve gexauxval() detection, remove getauxval() weak linking 2023-10-31 08:40:25 -05:00
Makefile.leveldb.include merge bitcoin#21430: Add -Werror=implicit-fallthrough compile flag 2024-06-25 13:39:56 +00:00
Makefile.minisketch.include merge bitcoin#29823: update subtree to 3472e2f5e 2024-10-29 10:09:02 +00:00
Makefile.qt_locale.include
Makefile.qt.include Merge bitcoin-core/gui#381: refactor: Make BitcoinCore class reusable 2024-10-25 20:51:20 +07:00
Makefile.qttest.include merge bitcoin#24301: header-only Boost 2024-08-13 22:53:48 +07:00
Makefile.test_fuzz.include merge bitcoin#26497: Make ConsumeNetAddr always produce valid onion addresses 2024-10-26 19:22:31 +00:00
Makefile.test_util.include merge bitcoin#25325: Add pool based memory resource 2024-09-04 16:29:30 +00:00
Makefile.test.include merge bitcoin#22861: Update test README and lint script 2024-11-27 04:55:46 +00:00
Makefile.univalue.include
mapport.cpp merge bitcoin#25493: document code in compat.h 2024-12-15 09:08:55 +00:00
mapport.h Merge bitcoin/bitcoin#26896: build: Remove port-forwarding runtime setting options from configure 2023-12-03 20:01:26 -06:00
memusage.h merge bitcoin#25325: Add pool based memory resource 2024-09-04 16:29:30 +00:00
merkleblock.cpp partial Merge #20842: docs: consolidate typo & url fixing 2024-07-26 13:32:54 +07:00
merkleblock.h merge bitcoin#23137: move-only bloom to src/common 2024-10-25 21:36:52 +00:00
messagesigner.cpp non-scripted-diff: bump copyright year to 2023 2024-02-24 11:05:37 -06:00
messagesigner.h non-scripted-diff: bump copyright year to 2023 2024-02-24 11:05:37 -06:00
net_permissions.cpp merge bitcoin#26261: cleanup LookupIntern, Lookup and LookupHost 2024-09-11 18:34:06 +00:00
net_permissions.h Merge bitcoin/bitcoin#26100: doc: clarify that NetPermissionFlags::Implicit is only about whitelists 2024-06-10 11:00:47 -05:00
net_processing.cpp Merge #6466: backport: merge bitcoin#18642, #25102, #25100, #25157, #25101, #25245, #25456, #24697, #24662, #25499 (clock backports) 2024-12-10 22:27:43 -06:00
net_processing.h Merge #6425: refactor: move CInstantSendManager::AskNodesForLockedTx into PeerManager 2024-12-04 11:13:45 -06:00
net_types.cpp Merge bitcoin/bitcoin#22362: Drop only invalid entries when reading banlist.json 2024-09-25 10:18:12 +05:30
net_types.h refactor: new type of message processing result for resolving circular dependency over PeerManager 2024-10-03 16:30:45 +07:00
net.cpp merge bitcoin#25493: document code in compat.h 2024-12-15 09:08:55 +00:00
net.h merge bitcoin#25493: document code in compat.h 2024-12-15 09:08:55 +00:00
netaddress.cpp merge bitcoin#26497: Make ConsumeNetAddr always produce valid onion addresses 2024-10-26 19:22:31 +00:00
netaddress.h merge bitcoin#25493: document code in compat.h 2024-12-15 09:08:55 +00:00
netbase.cpp merge bitcoin#25493: document code in compat.h 2024-12-15 09:08:55 +00:00
netbase.h merge bitcoin#25493: document code in compat.h 2024-12-15 09:08:55 +00:00
netfulfilledman.cpp chore: run contrib/devtools/copyright_header.py update . 2024-10-05 23:17:41 +03:00
netfulfilledman.h chore: run contrib/devtools/copyright_header.py update . 2024-10-05 23:17:41 +03:00
netgroup.cpp Merge bitcoin/bitcoin#24976: netgroup: Follow-up for #22910 2024-10-15 09:25:09 -05:00
netgroup.h merge bitcoin#22910: Encapsulate asmap in NetGroupManager 2024-09-03 14:57:50 +00:00
netmessagemaker.h fix: release unused memory in CNetMsgMaker::Make() 2024-08-27 20:45:36 +03:00
noui.cpp merge bitcoin#25338: Avoid incompatibility with CMake AUTOUIC feature 2024-12-15 09:08:22 +00:00
noui.h Merge #20813: scripted-diff: Bump copyright headers 2024-04-10 03:19:34 +07:00
outputtype.cpp
outputtype.h Merge #20813: scripted-diff: Bump copyright headers 2024-04-10 03:19:34 +07:00
pow.cpp
pow.h
prevector.h Merge bitcoin/bitcoin#24962: prevector: enforce is_trivially_copyable_v 2024-01-14 11:05:36 -06:00
protocol.cpp merge bitcoin#23443: Erlay support signaling 2024-10-27 19:38:29 +00:00
protocol.h merge bitcoin#24697: refactor address relay time 2024-12-08 15:23:29 +00:00
psbt.cpp merge bitcoin#23438: Use spans of std::byte in serialize 2024-02-28 13:37:34 -06:00
psbt.h Merge bitcoin/bitcoin#26997: psbt: s/transcation/transaction/ 2024-10-23 20:06:32 -05:00
pubkey.cpp merge bitcoin#28196: BIP324 connection support 2024-09-20 12:24:22 +00:00
pubkey.h merge bitcoin#28196: BIP324 connection support 2024-09-20 12:24:22 +00:00
random.cpp merge bitcoin#26814: remove windows-only compat.h usage in random 2024-12-15 09:08:55 +00:00
random.h stats: clean up randomization code, move FastRandomContext inward 2024-09-11 14:34:19 +00:00
randomenv.cpp merge bitcoin#26832: move (win) S_* defines into bdb 2024-12-15 09:08:55 +00:00
randomenv.h merge bitcoin#23524: Fix typos in endif header comments 2024-12-04 15:55:10 +00:00
rest.cpp refactor: drop unused InstantSendManager from blockheaderToJSON 2024-11-16 17:44:31 +07:00
reverse_iterator.h Merge bitcoin/bitcoin#26827: doc: use "std lib clock" over "C++11 clock" 2024-08-12 11:52:41 +07:00
saltedhasher.cpp non-scripted-diff: bump copyright year to 2023 2024-02-24 11:05:37 -06:00
saltedhasher.h non-scripted-diff: bump copyright year to 2023 2024-02-24 11:05:37 -06:00
scheduler.cpp merge bitcoin#25100: Switch scheduler to steady_clock 2024-12-08 15:23:27 +00:00
scheduler.h merge bitcoin#25100: Switch scheduler to steady_clock 2024-12-08 15:23:27 +00:00
serialize.h merge bitcoin#24697: refactor address relay time 2024-12-08 15:23:29 +00:00
shutdown.cpp merge bitcoin#25338: Avoid incompatibility with CMake AUTOUIC feature 2024-12-15 09:08:22 +00:00
shutdown.h merge bitcoin#23524: Fix typos in endif header comments 2024-12-04 15:55:10 +00:00
source_location.h refactor: add gsl::not_null to get compile time / run time pointer guarantees (#5595) 2023-10-22 09:14:30 -05:00
span.h merge bitcoin#23524: Fix typos in endif header comments 2024-12-04 15:55:10 +00:00
spentindex.h merge bitcoin#22951: move amount.h into consensus 2024-10-25 16:00:12 +00:00
spork.cpp chore: run contrib/devtools/copyright_header.py update . 2024-10-05 23:17:41 +03:00
spork.h fix: adjust the number of spork defaults 2024-10-16 13:16:00 +03:00
stacktraces.cpp chore: run contrib/devtools/copyright_header.py update . 2024-10-05 23:17:41 +03:00
stacktraces.h merge bitcoin#23524: Fix typos in endif header comments 2024-12-04 15:55:10 +00:00
streams.h merge bitcoin#16981: Improve runtime performance of --reindex 2024-10-15 06:58:52 +00:00
sync.cpp merge bitcoin#23104: Avoid breaking single log lines over multiple lines in the log file 2024-11-20 17:26:32 +00:00
sync.h fix: don't use non-existent PrintLockContention in SharedEnter 2024-11-20 17:26:33 +00:00
threadinterrupt.cpp Merge bitcoin/bitcoin#24974: refactor: Make FEELER_SLEEP_WINDOW type safe (std::chrono) 2023-10-31 08:40:25 -05:00
threadinterrupt.h merge bitcoin#23524: Fix typos in endif header comments 2024-12-04 15:55:10 +00:00
threadsafety.h Merge #20813: scripted-diff: Bump copyright headers 2024-04-10 03:19:34 +07:00
timedata.cpp merge bitcoin#25338: Avoid incompatibility with CMake AUTOUIC feature 2024-12-15 09:08:22 +00:00
timedata.h merge bitcoin#24662: Use system time instead of adjusted network time 2024-12-08 15:23:29 +00:00
timestampindex.h chore: run contrib/devtools/copyright_header.py update . 2024-10-05 23:17:41 +03:00
tinyformat.h merge bitcoin#21430: Add -Werror=implicit-fallthrough compile flag 2024-06-25 13:39:56 +00:00
torcontrol.cpp merge bitcoin#25493: document code in compat.h 2024-12-15 09:08:55 +00:00
torcontrol.h merge bitcoin#23524: Fix typos in endif header comments 2024-12-04 15:55:10 +00:00
txdb.cpp merge bitcoin#25338: Avoid incompatibility with CMake AUTOUIC feature 2024-12-15 09:08:22 +00:00
txdb.h merge bitcoin#22626: Remove txindex migration code 2024-10-05 17:10:03 +00:00
txmempool.cpp fix: add multiple missing annotation about locks for dash specific code 2024-10-12 20:06:23 +07:00
txmempool.h merge bitcoin#22951: move amount.h into consensus 2024-10-25 16:00:12 +00:00
txorphanage.cpp fix: fixes for orphange's locks and cs_main 2024-10-12 20:06:27 +07:00
txorphanage.h Merge bitcoin/bitcoin#21562: [net processing] Various tidying up of PeerManagerImpl ctor 2024-10-25 20:51:18 +07:00
uint256.cpp Merge #20813: scripted-diff: Bump copyright headers 2024-04-10 03:19:34 +07:00
uint256.h Merge bitcoin/bitcoin#27929: Added static_assert to check that base_blob is using whole bytes. 2024-10-25 09:12:01 -05:00
undo.h
unordered_lru_cache.h non-scripted-diff: bump copyright year to 2023 2024-02-24 11:05:37 -06:00
validation.cpp merge bitcoin#25338: Avoid incompatibility with CMake AUTOUIC feature 2024-12-15 09:08:22 +00:00
validation.h Merge bitcoin/bitcoin#24347: rpc: Fix implicit-integer-sign-change in verifychain 2024-12-07 23:20:22 +05:30
validationinterface.cpp merge bitcoin#19572: Create "sequence" notifier, enabling client-side mempool tracking 2024-08-26 15:35:12 +00:00
validationinterface.h merge bitcoin#24138: Commit MuHash and best block together for coinstatsindex 2024-10-15 06:58:50 +00:00
version.h chore: bump MIN_MASTERNODE_PROTO_VERSION to latest proto 2024-12-06 17:18:35 -06:00
versionbits.cpp Merge #21377: Speedy trial support for versionbits 2024-04-23 22:41:10 +07:00
versionbits.h merge bitcoin#25109: Strengthen AssertLockNotHeld assertions 2024-05-09 08:52:48 +00:00
walletinitinterface.h Merge #20813: scripted-diff: Bump copyright headers 2024-04-10 03:19:34 +07:00
warnings.cpp Merge #20813: scripted-diff: Bump copyright headers 2024-04-10 03:19:34 +07:00
warnings.h merge bitcoin#23524: Fix typos in endif header comments 2024-12-04 15:55:10 +00:00