This file contains 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
Fee | Block in | Block mined | Timing | |
---|---|---|---|---|
1024 | 5001755 | 5001756 | 1 | |
1000 | 5001762 | 5001763 | 1 | |
1008 | 5001777 | 5001778 | 1 | |
1000 | 5001783 | 5001785 | 2 | |
1004 | 5001794 | 5001795 | 1 | |
1000 | 5001797 | 5001799 | 2 | |
1004 | 5001803 | 5001804 | 1 | |
1000 | 5001805 | 5001806 | 1 | |
1000 | 5001806 | 5001808 | 2 |
This file contains 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
#!/usr/bin/env python3 | |
# Copyright (c) 2024 Patrick Lodder | |
""" | |
big mempool test | |
1. Get 8 utxo | |
2. Split into 500k utxo | |
3. fill up mempool | |
6. run mempool queries as we go | |
""" |
This file contains 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
#!/usr/bin/env python3 | |
# supershibe.py (C) 2023-2024 by Patrick Lodder is licensed under CC BY-SA 4.0 | |
# See: http://creativecommons.org/licenses/by-sa/4.0/ | |
from llama_cpp import Llama | |
import json, re | |
llm = Llama(model_path="/path/to/llama-2-7b-chat.Q8_0.gguf") | |
prompt_template = ''' |
OlderNewer