Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed fees #545

Merged
merged 18 commits into from
Jan 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
c9a3058
feat: fix megalinter json parsing
beqaabu Sep 2, 2024
db6a42f
build(deps): bump taiki-e/install-action in the all-dependencies group
dependabot[bot] Oct 1, 2024
8dccfb8
build(deps-dev): bump the dev-dependencies group across 1 directory w…
dependabot[bot] Oct 1, 2024
03edc81
build(deps): bump clap in the prod-dependencies group across 1 directory
dependabot[bot] Oct 1, 2024
e88728f
Bump version to 3.36.0
atodorov Oct 1, 2024
6c452f6
[pre-commit.ci] pre-commit autoupdate
pre-commit-ci[bot] Oct 7, 2024
716e5b7
Include repository name as part of self-hosted runner hostname
atodorov Oct 11, 2024
3693aa9
build(deps): bump secp256k1 from 4.0.3 to 4.0.4 in /testing
dependabot[bot] Oct 21, 2024
e5b077d
build(deps): bump taiki-e/install-action in the all-dependencies group
dependabot[bot] Nov 1, 2024
4f36036
build(deps): bump the prod-dependencies group across 1 directory with…
dependabot[bot] Nov 1, 2024
3ffc82c
Bump version to 3.37.0
atodorov Nov 4, 2024
ebd07aa
build(deps-dev): bump the dev-dependencies group across 1 directory w…
dependabot[bot] Nov 4, 2024
cff1cbc
build(deps): bump secp256k1
dependabot[bot] Oct 22, 2024
d9f98af
update runtime's polynomial fn to adjust formula of WeightToFeeCoef
rustlang-dev Nov 7, 2024
7f5be5a
cargo fmt --all
rustlang-dev Nov 7, 2024
5bb888f
bump runtime version, remove unused variable.
rustlang-dev Nov 8, 2024
02e79af
feat: update tx payment pallet config (#525) (#527)
beqaabu Nov 18, 2024
d5cc46d
Use the correct chain name for live-sync-creditcoin CI job
atodorov Nov 21, 2024
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
permissions: read-all

env:
RUNNER_VM_NAME: "gh-runner-$GITHUB_RUN_ID-attempt-$GITHUB_RUN_ATTEMPT"
RUNNER_VM_NAME: "${{ github.event.repository.name }}-$GITHUB_RUN_ID-attempt-$GITHUB_RUN_ATTEMPT"
LINODE_REGION: "nl-ams"
# Shared CPU, Linode 8 GB, 4 vCPU, 96 $/mo
LINODE_VM_SIZE: "g6-standard-4"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/llvm-cov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- uses: Swatinem/rust-cache@v2

- name: Install cargo-llvm-cov
uses: taiki-e/[email protected].3
uses: taiki-e/[email protected].58
with:
tool: cargo-llvm-cov

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/runtime-upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ on:
permissions: read-all

env:
RUNNER_VM_NAME: "github-runner-$GITHUB_RUN_ID-attempt-$GITHUB_RUN_ATTEMPT"
RESOURCE_GROUP: "github-runner-$GITHUB_RUN_ID-attempt-$GITHUB_RUN_ATTEMPT"
RUNNER_VM_NAME: "${{ github.event.repository.name }}-$GITHUB_RUN_ID-attempt-$GITHUB_RUN_ATTEMPT"
RESOURCE_GROUP: "${{ github.event.repository.name }}-$GITHUB_RUN_ID-attempt-$GITHUB_RUN_ATTEMPT"
AZ_LOCATION: "westus3"

jobs:
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
if: github.base_ref == 'main'
run: |
# shellcheck disable=SC2129
echo "target_chain=main" >> "$GITHUB_OUTPUT"
echo "target_chain=mainnet" >> "$GITHUB_OUTPUT"
echo "boot_node=/dns4/cc3-bootnode.creditcoin.network/tcp/30333/p2p/12D3KooWLGyvbdQ3wTGjRAEueFsDnstZnV8fN3iyPTmHeyswSPGy" >> "$GITHUB_OUTPUT"
echo "rpc_url=wss://rpc.cc3-mainnet.creditcoin.network:443/ws" >> "$GITHUB_OUTPUT"
echo "https_rpc_url=https://rpc.cc3-mainnet.creditcoin.network/rpc" >> "$GITHUB_OUTPUT"
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
---
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v5.0.0
hooks:
- id: end-of-file-fixer
- id: mixed-line-ending
Expand Down
Loading
Loading