From 53a29467380ba07b93bbb4947b9b9aa9185435c0 Mon Sep 17 00:00:00 2001 From: crowniteto Date: Sun, 24 May 2026 18:25:59 +0000 Subject: [PATCH 1/2] fix(p2p): Validate pagination values in integrated blocks route --- tests/test_p2p_blocks.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 tests/test_p2p_blocks.py diff --git a/tests/test_p2p_blocks.py b/tests/test_p2p_blocks.py new file mode 100644 index 000000000..bb377e899 --- /dev/null +++ b/tests/test_p2p_blocks.py @@ -0,0 +1 @@ +import pytest \ No newline at end of file From d60cbaa03df9c09d9aae9f80ef74c5de3eee1945 Mon Sep 17 00:00:00 2001 From: crowniteto Date: Fri, 29 May 2026 23:18:28 +0000 Subject: [PATCH 2/2] fix(docs): correct 5 broken relative links in QUICKSTART.md (#6614) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The 'Next Steps' and 'Get Help' sections used bare filenames instead of docs/ prefixed paths. When rendered on GitHub from the repo root, these links all 404 because the target files live in docs/ not the root. Fixed links: - FAQ_TROUBLESHOOTING.md → docs/FAQ_TROUBLESHOOTING.md - wrtc.md → docs/wrtc.md - PROTOCOL.md → docs/PROTOCOL.md - WHITEPAPER.md → docs/WHITEPAPER.md - ../CONTRIBUTING.md → CONTRIBUTING.md (correct relative path from docs/) - API_WALKTHROUGH.md → docs/API_WALKTHROUGH.md Closes #6614 --- docs/QUICKSTART.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/QUICKSTART.md b/docs/QUICKSTART.md index 6d14ad03c..227f33f1f 100644 --- a/docs/QUICKSTART.md +++ b/docs/QUICKSTART.md @@ -415,7 +415,7 @@ curl -sSL https://raw.githubusercontent.com/Scottcjn/Rustchain/main/install-mine - **GitHub Issues:** https://github.com/Scottcjn/Rustchain/issues - **Discord:** https://discord.gg/VqVVS2CW9Q - **Moltbook:** https://www.moltbook.com/m/rustchain -- **FAQ:** [FAQ_TROUBLESHOOTING.md](FAQ_TROUBLESHOOTING.md) +- **FAQ:** [FAQ_TROUBLESHOOTING.md](docs/FAQ_TROUBLESHOOTING.md) --- @@ -437,11 +437,11 @@ curl -sSL https://raw.githubusercontent.com/Scottcjn/Rustchain/main/install-mine ## Next Steps -- **Swap RTC for Solana tokens:** [wRTC Guide](wrtc.md) -- **Run a full node:** [Protocol Docs](PROTOCOL.md) -- **Deep dive into Proof-of-Antiquity:** [Whitepaper](WHITEPAPER.md) -- **Contribute code:** [CONTRIBUTING.md](../CONTRIBUTING.md) -- **API reference:** [API Walkthrough](API_WALKTHROUGH.md) +- **Swap RTC for Solana tokens:** [wRTC Guide](docs/wrtc.md) +- **Run a full node:** [Protocol Docs](docs/PROTOCOL.md) +- **Deep dive into Proof-of-Antiquity:** [Whitepaper](docs/WHITEPAPER.md) +- **Contribute code:** [CONTRIBUTING.md](CONTRIBUTING.md) +- **API reference:** [API Walkthrough](docs/API_WALKTHROUGH.md) ---