OP_VAULT
: spent to trigger withdrawalOP_VAULT_RECOVER
: spent to recoverOP_CTV
: spent into final withdrawal target
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npub1ta5sstxzpk7aykejp6cv8eul80m2rjfwvp3rgjw0xgjtp7s3ak5s0c96f7 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2022-09-30T17:26:52Z [] Timeout downloading block 0000000000000000000573b6110e9e77864ee0832f2ade5f9317b439c3ce5294 from peer=4, disconnecting | |
2022-10-05T22:29:02.937882Z [] Timeout downloading block 000000000000000000086779ecf494b0595a9b779f501c7e25fb2be0b69907a2 from peer=24, disconnecting | |
2022-10-06T19:52:47.698534Z Timeout downloading block 000000000000000000016d82a353995e3e713c53319f71361cd02b53cc0fb49e from peer=3, disconnecting | |
2022-10-06T20:12:10.246876Z Timeout downloading block 0000000000000000000571fbffbdcbae46b16f79e75a77cd1a470981f48d951f from peer=6, disconnecting | |
2022-10-06T20:58:28.107620Z Timeout downloading block 00000000000000000003fcc1329bec27b69463dde49fb367421d8f139a2e66f5 from peer=5, disconnecting | |
2022-10-06T21:26:46.746544Z [] Timeout downloading block 000000000000000000069f15b30ce08fa67b43d8c33baf00ab6748c194e0792a from peer=8, disconnecting | |
2022-10-06T21:26:46.797297Z Timeout downloading block 000000000000000000069f15b30ce08fa67b43d8c33baf00ab6748c194e0792a from peer=14, disconnectin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/script/interpreter.cpp b/src/script/interpreter.cpp | |
index 9963be758d..e4395dc329 100644 | |
--- a/src/script/interpreter.cpp | |
+++ b/src/script/interpreter.cpp | |
@@ -11,8 +11,10 @@ | |
#include <pubkey.h> | |
#include <span.h> | |
#include <script/script.h> | |
+#include <script/sign.h> | |
#include <uint256.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
b-03.slug | 2023-03-18T01:46:16.587175Z [] Requesting block 000000000000000000014bdfbf46969d9b1f290ad21f27f263e14881ef595627 from peer=2522 | |
b-03.slug | 2023-03-18T01:46:16.587241Z [] Requesting block 00000000000000000001e34fc5c0db02f3061e9d14df1d2df8c03cb3d72d0218 from peer=2522 | |
b-03.slug | 2023-03-18T01:46:17.819765Z [] received block 000000000000000000014bdfbf46969d9b1f290ad21f27f263e14881ef595627 peer=2522 | |
b-03.slug | 2023-03-18T01:46:18.790264Z [] received block 00000000000000000001e34fc5c0db02f3061e9d14df1d2df8c03cb3d72d0218 peer=2522 | |
b-03.slug | 2023-03-18T01:46:19.264997Z [] UpdateTip: new best=000000000000000000014bdfbf46969d9b1f290ad21f27f263e14881ef595627 height=781277 version=0x2f832000 log2_work=94.064302 tx=815168901 date='2023-03-18T01:41:17Z' progress=0.999999 cache=41.5MiB(220936txo) warning='90 of last 100 blocks have unexpected version' | |
b-03.slug | 2023-03-18T01:46:19.303297Z [] UpdateTip: new best=00000000000000000001e34fc5c0db02f3061e9d14df1d2df8c03cb3d72d0218 height=781278 v |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For debugging bitcoin script execution (in EvalScript) | |
#include <logging.h> | |
template <typename T> | |
void print_bytes(const T& thing, std::string name) | |
{ | |
std::string bytes; | |
for (auto c : thing) { | |
bytes += tfm::format("%02x ", c); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Go to wifi.we.co to get your credentials first | |
% nmcli con add con-name wework type wifi ssid WeWorkWiFi | |
% nmcli con edit wework | |
nmcli> set ipv4.method auto | |
nmcli> set 802-1x.eap peap | |
nmcli> set 802-1x.identity <YOUR_EMAIL> | |
nmcli> set 802-1x.phase2-auth mschapv2 | |
nmcli> set wifi-sec.key-mgmt wpa-eap |
- Install Spotify in the usual way:
curl -fsSL https://download.spotify.com/debian/pubkey_5E3C45D7B312C643.gpg | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/spotify.gpg
sudo apt update && sudo apt install spotify-client
- Compile stubs for X-specific calls that Spotify makes:
$ cat xstub.c
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-: ---------- > 1: 608d8b4a62 rpc: move-only: consolidate blockchain scan args | |
1: 6a69dd267e ! 2: d836ce3f2f Add scanblocks RPC call - scan for relevant blocks with descriptors | |
@@ Metadata | |
Author: Jonas Schnelli <[email protected]> | |
## Commit message ## | |
- Add scanblocks RPC call - scan for relevant blocks with descriptors | |
+ rpc: add scanblocks - scan for relevant blocks with descriptors | |
+ | |
+ Co-authored-by: James O'Beirne <[email protected]> |