Skip to content

Commit

Permalink
Merge branch 'main' into fix-resubscribe
Browse files Browse the repository at this point in the history
  • Loading branch information
bitwiseguy committed Oct 10, 2023
2 parents fbf16c1 + 7b5a00b commit 9cbd41b
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions netlify-build-ignore.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
if [ $COMMIT_REF == $CACHED_COMMIT_REF ] ; then exit 0 ; fi

case ${SITE_NAME} in

nitrodocs)
git diff --quiet $CACHED_COMMIT_REF $COMMIT_REF -- docs mkdocs.yml
;;

nitro-payment-demo)
git diff --quiet $CACHED_COMMIT_REF $COMMIT_REF -- ./packages/payment-proxy-client
;;

esac
2 changes: 1 addition & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[build]
ignore = "if [ ${COMMIT_REF} == ${CACHED_COMMIT_REF} ] ; then false ; else git diff --quiet $CACHED_COMMIT_REF $COMMIT_REF -- docs mkdocs.yml /packages/payment-proxy-client packages/nitro-rpc-client ; fi"
ignore = "bash ./netlify-build-ignore.sh"
2 changes: 1 addition & 1 deletion packages/nitro-protocol/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@statechannels/nitro-protocol",
"version": "2.0.0-alpha.5",
"version": "2.0.1-alpha.5",
"description": "Smart contracts and typescript libraries for nitro state channel protocol.",
"keywords": [],
"homepage": "https://github.com/statechannels/go-nitro",
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ go-nitro
- listens to blockchain events
- listens for counterparty messages
- stores important data to allow for recovery from counterparty inactivity / malice
- understands how to perform these functions safely without risking any funds
- understands how to perform these functions safely, without risking any funds

## Usage

> ⚠️ Go-nitro is pre-production software ⚠️
Go-nitro can be consumed either as [library code](./node/readme.md) or started in an [independent process](./doc.go) and interfaced with remote procedure calls (recommended).
Go-nitro can be consumed either as [library code](./node/readme.md) or run as an [independent process](./doc.go) and interfaced with remote procedure calls (recommended).

## Contributing

Expand Down

0 comments on commit 9cbd41b

Please sign in to comment.