Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
echo "$HOME/.local/bin" >> $GITHUB_PATH

- name: Run unit tests
run: go test -short ./... -timeout=20m
run: go test -short ./... -timeout=30m

- name: Test State - Race
run: make test-state-race
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ test:
@echo " > \033[32mRunning tests...\033[0m "
#GOBIN=$(PWD)/bin go run scripts/ci.go test
git lfs pull
go test -short -coverprofile c.out ./... -timeout=20m
go test -short -coverprofile c.out ./... -timeout=30m

## it-stable: Runs Integration Tests Stable mode
it-stable:
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/getting-started/overview/host-architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ The **state service** is the source of truth for all chain and node state.

## Block production

<img src="../../../assets/img/block_production.png" alt="block production" />
<img src="../../assets/img/block_production.png" alt="block production" />

A block is broken down into two sections, **the header** & **the body**.

Expand Down
12 changes: 6 additions & 6 deletions docs/docs/integrate/connect-to-polkadot-js.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,25 +21,25 @@ You'll need to setup the polkadot.js/apps to use a custom endpoint to connect to

Once you've opened the app in your browser, you should see it connected to the Polkadot network:

<img src= "../../assets/tutorial/connect-1.png" />
<img src= "../assets/tutorial/connect-1.png" />

In the top left hand corner, click the logo to open the network selection modal:

<img src="../../assets/tutorial/connect-2.png" />
<img src="../assets/tutorial/connect-2.png" />

Next, at the bottom of this menu is a "Development" dropdown, click to open that

<img src="../../assets/tutorial/connect-3.png" />
<img src="../assets/tutorial/connect-3.png" />

Now you should see a text area with the label "custom endpoint", here you add your local node's websocket address, usually "ws://127.0.0.1:8586",
click the Save icon on the right of the text box to save the endpoint.

<img src="../../assets/tutorial/connect-4.png" />
<img src="../assets/tutorial/connect-4.png" />

Finally, click the "Switch" button at the top of this modal:

<img src="../../assets/tutorial/connect-5.png" />
<img src="../assets/tutorial/connect-5.png" />

Congratulations, you've successfully connected to your Gossamer node!

<img src="../../assets/tutorial/connect-6.png" />
<img src="../assets/tutorial/connect-6.png" />