mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 13:57:58 +00:00
a782021ee8
* recover tx pool on light client * revert local tests fix * removed import renamings * futures03::Future -> std::future::Future * Update core/transaction-pool/graph/src/error.rs Co-Authored-By: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * replace remove_from_ready with remove_invalid * avoid excess hashing * debug -> warn * TransactionPool + BasicTransactionPool * pause future tx reject when resubmitting * bump impl_version to make CI happy * and revert back local test fixes * alter doc to restart CI * Transaction::clone() -> Transaction::duplicate() * transactions -> updated_tranasctions * remove explicit consensus-common ref * ::std:: -> std:: * manual set/unset flag -> calling clusore with given flag value * removed comments * removed force argument * BestIterator -> Box<Iterator> * separate crate for TxPool + Maintainer trait * long line fix * pos-merge fix * fix benches compilation * Rename txpoolapi to txpool_api * Clean up. * Finalize merge. * post-merge fix * Move transaction pool api to primitives directly. * Consistent naming for txpool-runtime-api * Warn about missing docs. * Move abstraction for offchain calls to tx-pool-api. * Merge RPC instantiation. * Update cargo.lock * Post merge fixes. * Avoid depending on client. * Fix build
69 lines
2.2 KiB
Plaintext
69 lines
2.2 KiB
Plaintext
# Lists some code owners.
|
|
#
|
|
# A codeowner just oversees some part of the codebase. If an owned file is changed then the
|
|
# corresponding codeowner receives a review request. An approval of the codeowner is
|
|
# not required for merging a PR though.
|
|
#
|
|
# **This is pretty much an experiment at the moment**. Feel free to remove yourself at any time if
|
|
# you do not want to receive review requests any longer.
|
|
#
|
|
# For details about syntax, see:
|
|
# https://help.github.com/en/articles/about-code-owners
|
|
# But here are some important notes:
|
|
#
|
|
# - Glob syntax is git-like, e.g. `/core` means the core directory in the root, unlike `core` which
|
|
# can be everywhere.
|
|
# - Multiple owners are supported.
|
|
# - Either handle (e.g, @pepyakin) or email can be used. Keep in mind, that handles might work better because they
|
|
# are more recognizable on GitHub, you can use them for mentioning unlike an email.
|
|
# - The latest matching rule, if multiple, takes precedence.
|
|
|
|
# Wasm execution and the wasm side of Substrate Runtime Interface
|
|
/client/executor/ @pepyakin
|
|
/primitives/sr-io/ @pepyakin
|
|
|
|
# Sandboxing capability of Substrate Runtime
|
|
/primitives/sr-sandbox/ @pepyakin
|
|
/primitives/core/src/sandbox.rs @pepyakin
|
|
|
|
# Transaction pool
|
|
/client/transaction-pool/ @tomusdrw
|
|
/primitives/transaction-pool/ @tomusdrw
|
|
|
|
# Offchain
|
|
/client/offchain/ @tomusdrw
|
|
/primitives/offchain/ @tomusdrw
|
|
|
|
# Everything that has RPC in it
|
|
/bin/node/rpc/ @tomusdrw
|
|
/bin/node/rpc-client/ @tomusdrw
|
|
/client/rpc/ @tomusdrw
|
|
/primitives/rpc/ @tomusdrw
|
|
|
|
# GRANDPA, BABE, consensus stuff
|
|
/frame/babe/ @andresilva @DemiMarie-parity
|
|
/frame/grandpa/ @andresilva @DemiMarie-parity
|
|
/client/finality-grandpa/ @andresilva @DemiMarie-parity
|
|
/client/consensus/babe/ @andresilva @DemiMarie-parity
|
|
/client/consensus/slots/ @andresilva @DemiMarie-parity
|
|
|
|
# Contracts
|
|
/frame/contracts/ @pepyakin @thiolliere @jimpo
|
|
/frame/contracts/src/wasm/runtime.rs @Robbepop
|
|
|
|
# Inflation points
|
|
/frame/staking/src/inflation.rs @thiolliere
|
|
|
|
# NPoS and Governance
|
|
/frame/staking/ @kianenigma
|
|
/frame/election/ @kianenigma
|
|
|
|
# End to end testing of substrate node
|
|
/bin/node/executor/ @kianenigma
|
|
|
|
# Transaction weight stuff
|
|
/primitives/sr-primitives/src/weights.rs @kianenigma
|
|
|
|
# Support crates
|
|
/frame/support/ @thiolliere @kianenigma
|