Skip to content

Commit

Permalink
rename: Connectors -> LiquidityPools (#1493)
Browse files Browse the repository at this point in the history
* rename: Connectors -> LiquidityPools

* Apply review comments
  • Loading branch information
NunoAlexandre authored and wischli committed Aug 15, 2023
1 parent 5eef085 commit 541540f
Show file tree
Hide file tree
Showing 81 changed files with 726 additions and 706 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ node/res/* @mikiquantum @mustermeiszer @branan @NunoAlexandre @wischli
*.toml @mikiquantum @mustermeiszer @branan @NunoAlexandre @lemunozm @wischli @cdamian @thea-leake

## Changes to specific pallets
pallets/connectors/* @NunoAlexandre @cdamian @wischli @mustermeiszer
pallets/liquidity-pools/* @NunoAlexandre @cdamian @wischli @mustermeiszer
pallets/rewards/* @lemunozm @mikiquantum
pallets/liquidity-rewards/* @lemunozm @mikiquantum
pallets/block-rewards/* @wischli @lemunozm
Expand Down
186 changes: 93 additions & 93 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,6 @@ members = [
"pallets/anchors",
"pallets/bridge",
"pallets/block-rewards",
"pallets/connectors",
"pallets/connectors-gateway",
"pallets/connectors-gateway/routers",
"pallets/connectors-gateway/axelar-gateway-precompile",
"pallets/claims",
"pallets/collator-allowlist",
"pallets/crowdloan-claim",
Expand All @@ -51,6 +47,10 @@ members = [
"pallets/interest-accrual",
"pallets/investments",
"pallets/keystore",
"pallets/liquidity-pools",
"pallets/liquidity-pools-gateway",
"pallets/liquidity-pools-gateway/axelar-gateway-precompile",
"pallets/liquidity-pools-gateway/routers",
"pallets/liquidity-rewards",
"pallets/loans",
"pallets/migration",
Expand Down
4 changes: 1 addition & 3 deletions docker-compose-local-chain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ services:
platform: "linux/amd64"
ports:
- "30355:30333"
- "9936:9933"
- "9946:9944"
- "9946:9933"
volumes:
- type: bind
source: ./res/rococo-local.json
Expand All @@ -21,7 +20,6 @@ services:
--execution=wasm
--rpc-external
--rpc-cors all
--ws-external
--rpc-methods=Unsafe
--state-cache-size=0
--log="main,info,xcm=trace,xcm-executor=trace"
Expand Down
14 changes: 4 additions & 10 deletions docker-compose-local-relay.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@ version: '3'
services:
node_alice:
container_name: alice
image: "parity/polkadot:v0.9.38"
image: "parity/polkadot:v0.9.43"
platform: "linux/amd64"
ports:
- "30333:30333"
- "9933:9933"
- "9944:9944"
- "9944:9933"
volumes:
- type: bind
source: ./res/rococo-local.json
Expand All @@ -23,22 +22,19 @@ services:
--base-path=/data
--port 30333
--rpc-port 9933
--ws-port 9944
--rpc-external
--rpc-cors all
--ws-external
--rpc-methods=Unsafe
--alice
--log="main,info,xcm=trace,xcm-executor=trace"
node_bob:
container_name: bob
image: "parity/polkadot:v0.9.38"
image: "parity/polkadot:v0.9.43"
platform: "linux/amd64"
ports:
- "30344:30333"
- "9935:9933"
- "9945:9944"
- "9945:9933"
volumes:
- type: bind
source: ./res/rococo-local.json
Expand All @@ -52,9 +48,7 @@ services:
--execution=wasm
--port 30333
--rpc-port 9933
--ws-port 9944
--rpc-external
--ws-external
--rpc-cors all
--rpc-methods=Unsafe
--bob
Expand Down
Loading

0 comments on commit 541540f

Please sign in to comment.