Skip to content

Commit

Permalink
Merge pull request #2273 from subspace/operator_renames
Browse files Browse the repository at this point in the history
Rename executor to operator in session keys
  • Loading branch information
vedhavyas authored Nov 27, 2023
2 parents b7ef0bb + c24ca08 commit 13d714f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions domains/runtime/evm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,8 @@ impl fp_self_contained::SelfContainedCall for RuntimeCall {

impl_opaque_keys! {
pub struct SessionKeys {
/// Primarily used for adding the executor authority key into the keystore in the dev mode.
pub executor: sp_domains::OperatorKey,
/// Primarily used for adding the operator signing key into the Keystore.
pub operator: sp_domains::OperatorKey,
}
}

Expand Down
4 changes: 2 additions & 2 deletions domains/test/runtime/evm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ impl fp_self_contained::SelfContainedCall for RuntimeCall {

impl_opaque_keys! {
pub struct SessionKeys {
/// Primarily used for adding the executor authority key into the keystore in the dev mode.
pub executor: sp_domains::OperatorKey,
/// Primarily used for adding the operator signing key into the keystore.
pub operator: sp_domains::OperatorKey,
}
}

Expand Down

0 comments on commit 13d714f

Please sign in to comment.