Skip to content

Commit

Permalink
Merge pull request #221 from omerskywalker/excludeTwitterLinkChecks
Browse files Browse the repository at this point in the history
exlude twitter links from linkcheck #211
  • Loading branch information
pavlenex committed May 10, 2024
2 parents 2dd6219 + 600c8c7 commit b6512c4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ jobs:
- name: Build
run: yarn build
# Run linkcheck, propagate linkcheck failure through grep pipe
- name: Linkcheck
run: set -o pipefail; yarn linkcheck 2>/dev/null | grep "Getting links from\|BROKEN"
continue-on-error: false
#- name: Linkcheck
# run: |
# set -o pipefail
# yarn linkcheck | grep -v "https://twitter.com" | grep "Getting links from\|BROKEN"
# continue-on-error: false
2 changes: 1 addition & 1 deletion src/_blog/SRI-1.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Aside from pools rejecting templates with transactions they wish to censor, ther
- A connection interruption between the pool and downstream
- Downstream creates custom templates below the acceptable fee policy defined by the pool

**SRI’s pool** is simple and opinionated and currently can receive a template from the Template Provider, and create jobs for the downstream with the adequate difficulty. Anyone can easily deploy this simple pool today or use our libraries to integrate into their existing operations. Going forward, we plan to continue refactoring our code to allow for more diverse use-cases. Anyone interested in integrating SV2 into an existing pool, or starting a brand-new pool, [let us know](https://discord.gg/stEjAZ2y8r), we’d love to collaborate more closely. One example of a pool using SRI in production is [DMND](landing.dmnd.work).
**SRI’s pool** is simple and opinionated and currently can receive a template from the Template Provider, and create jobs for the downstream with the adequate difficulty. Anyone can easily deploy this simple pool today or use our libraries to integrate into their existing operations. Going forward, we plan to continue refactoring our code to allow for more diverse use-cases. Anyone interested in integrating SV2 into an existing pool, or starting a brand-new pool, [let us know](https://discord.gg/stEjAZ2y8r), we’d love to collaborate more closely. One example of a pool using SRI in production is [DMND](https://www.dmnd.work/).

**Template Provider** enables the selection of transactions from the locally-run bitcoin node. Miners (soon, also independent third parties) can create custom block templates and declare custom mining jobs to the pool. Currently, to use the Template Provider you need to use our patched version of Bitcoin Core. Sjors Provoost opened a pull request in the Bitcoin Core repo [#29432](https://github.com/bitcoin/bitcoin/pull/29432) which can be tested and reviewed. We’re inviting code reviewers to take a look at smaller PR’s that build [#2943](https://github.com/bitcoin/bitcoin/pull/29432).

Expand Down

0 comments on commit b6512c4

Please sign in to comment.