Fedora Silverblue, default installation.
- No automatic login (it's strange UI)
Set up fully automatic updates, in /etc/rpm-ostreed.conf
set AutomaticUpdatePolicy=stage
Making check in src | |
make[1]: Entering directory '/home/martinus/git/github.com/martinus/bitcoin/src' | |
make[2]: Entering directory '/home/martinus/git/github.com/martinus/bitcoin/src' | |
make[3]: Entering directory '/home/martinus/git/github.com/martinus/bitcoin' | |
make[3]: Leaving directory '/home/martinus/git/github.com/martinus/bitcoin' | |
GEN obj/build.h | |
make minisketch/test | |
make[3]: Entering directory '/home/martinus/git/github.com/martinus/bitcoin/src' | |
make[3]: 'minisketch/test' is up to date. | |
make[3]: Leaving directory '/home/martinus/git/github.com/martinus/bitcoin/src' |
I'm now on #nostr: npub1yyz6z2ze997eu5pe94fmy09rfjce0gqk2u62ptq7uudjcfrmdlfs0enkcm
/* Fast open-addressing hash table. | |
* | |
* Copyright 2022 Joaquin M Lopez Munoz. | |
* Distributed under the Boost Software License, Version 1.0. | |
* (See accompanying file LICENSE_1_0.txt or copy at | |
* http://www.boost.org/LICENSE_1_0.txt) | |
* | |
* See https://www.boost.org/libs/unordered for library home page. | |
*/ |
/** | |
* TODO | |
* | |
* Usage is like so: | |
* | |
* using CCoinsMap = std::pmr::unordered_map<COutPoint, CCoinsCacheEntry, SaltedOutpointHasher>; | |
* auto mr = NodePoolResource<256>(); // large enough to fit nodes size | |
* auto map = CCoinsMap{0, SaltedOutpointHasher{}, std::equal_to<COutPoint>{}, &mr}; | |
*/ | |
template <size_t MAX_BLOCK_SIZE_BYTES> |
#pragma once | |
#include <cstddef> | |
#include <type_traits> | |
namespace basics { | |
class Times { | |
size_t m_times; |
# cd to native directory and run the commands | |
run_in_venv() ( | |
if [ -z "$VIRTUAL_ENV" ]; then | |
source ~/git/venv/bin/activate | |
fi | |
$@ | |
) | |
# Sets CPU into a fixed state for the call, then resets it back. | |
bench() ( |