Skip to content

Commit 629a541

Browse files
committed
Merge branch 'master' into ao-enact-candidate-weight
* master: (39 commits) short-term fix for para inherent weight overestimation (#5082) CI: Add backporting bot (#4795) Fix benchmark failures when using `insecure_zero_ed` flag (#5354) Command bot GHA v2 - /cmd <cmd> (#5457) Remove pallet::getter usage from treasury (#4962) Bump blake2b_simd from 1.0.1 to 1.0.2 (#5404) Bump rustversion from 1.0.14 to 1.0.17 (#5405) Bridge zombienet tests: remove old command (#5434) polkadot-parachain: Add omni-node variant with u64 block number (#5269) Refactor verbose test (#5506) Use umbrella crate for minimal template (#5155) IBP Coretime Polkadot bootnodes (#5499) rpc server: listen to `ipv6 socket` if available and `--experimental-rpc-endpoint` CLI option (#4792) Update approval-voting-regression-bench (#5504) change try-runtime rpc domains (#5443) polkadot-parachain-bin: Remove contracts parachain (#5471) Add feature to allow Aura collator to use full PoV size (#5393) Adding stkd bootnodes (#5470) Make `PendingConfigs` storage item public (#5467) frame-omni-bencher maintenance (#5466) ...
2 parents 3d1d839 + cc7ebe0 commit 629a541

File tree

354 files changed

+32800
-5202
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

354 files changed

+32800
-5202
lines changed

.config/lychee.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ exclude = [
3232
"https://github.com/paritytech/polkadot-sdk/substrate/frame/timestamp",
3333
"https://github.com/paritytech/substrate/frame/fast-unstake",
3434
"https://github.com/zkcrypto/bls12_381/blob/e224ad4ea1babfc582ccd751c2bf128611d10936/src/test-data/mod.rs",
35-
"https://polkadot-try-runtime-node.parity-chains.parity.io/",
3635
"https://polkadot.network/the-path-of-a-parachain-block/",
3736
"https://research.web3.foundation/en/latest/polkadot/NPoS/3.%20Balancing.html",
3837
"https://research.web3.foundation/en/latest/polkadot/Token%20Economics.html#inflation-model",
@@ -41,6 +40,7 @@ exclude = [
4140
"https://research.web3.foundation/en/latest/polkadot/overview/2-token-economics.html#inflation-model",
4241
"https://research.web3.foundation/en/latest/polkadot/slashing/npos.html",
4342
"https://rpc.polkadot.io/",
43+
"https://try-runtime.polkadot.io/",
4444
"https://w3f.github.io/parachain-implementers-guide/node/approval/approval-distribution.html",
4545
"https://w3f.github.io/parachain-implementers-guide/node/index.html",
4646
"https://w3f.github.io/parachain-implementers-guide/protocol-chain-selection.html",

.config/zepter.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ workflows:
2727
]
2828
# The umbrella crate uses more features, so we to check those too:
2929
check_umbrella:
30-
- [ $check.0, '--features=serde,experimental,runtime,with-tracing,tuples-96,with-tracing', '-p=polkadot-sdk' ]
30+
- [ $check.0, '--features=serde,experimental,riscv,runtime,with-tracing,tuples-96,with-tracing', '-p=polkadot-sdk' ]
3131
# Same as `check_*`, but with the `--fix` flag.
3232
default:
3333
- [ $check.0, '--fix' ]

.github/command-screnshot.png

-30.8 KB
Binary file not shown.

.github/commands-readme.md

Lines changed: 0 additions & 276 deletions
This file was deleted.

.github/pull_request_template.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../docs/contributor/PULL_REQUEST_TEMPLATE.md

.github/scripts/cmd/_help.py

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import argparse
2+
3+
"""
4+
5+
Custom help action for argparse, it prints the help message for the main parser and all subparsers.
6+
7+
"""
8+
9+
10+
class _HelpAction(argparse._HelpAction):
11+
def __call__(self, parser, namespace, values, option_string=None):
12+
parser.print_help()
13+
14+
# retrieve subparsers from parser
15+
subparsers_actions = [
16+
action for action in parser._actions
17+
if isinstance(action, argparse._SubParsersAction)]
18+
# there will probably only be one subparser_action,
19+
# but better save than sorry
20+
for subparsers_action in subparsers_actions:
21+
# get all subparsers and print help
22+
for choice, subparser in subparsers_action.choices.items():
23+
print("\n### Command '{}'".format(choice))
24+
print(subparser.format_help())
25+
26+
parser.exit()

0 commit comments

Comments
 (0)