Skip to content

Commit

Permalink
ci: remove deprecated arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
CertainLach committed Jul 20, 2023
1 parent a73db73 commit 2b81a36
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .docker/Dockerfile-chain-dev
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ WORKDIR /dev_chain
RUN cargo build --release
RUN echo "$NETWORK"

CMD cargo run --release --features=${NETWORK}-runtime -- --dev -linfo --unsafe-ws-external --rpc-cors=all --unsafe-rpc-external
CMD cargo run --release --features=${NETWORK}-runtime -- --dev -linfo --rpc-cors=all --unsafe-rpc-external
2 changes: 1 addition & 1 deletion .docker/docker-compose.tmp-dev.j2
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ services:
options:
max-size: "1m"
max-file: "3"
command: cargo run --release --features={{ NETWORK }}-runtime -- --dev -linfo --unsafe-ws-external --rpc-cors=all --unsafe-rpc-external
command: cargo run --release --features={{ NETWORK }}-runtime -- --dev -linfo --rpc-cors=all --unsafe-rpc-external
8 changes: 0 additions & 8 deletions runtime/common/runtime_apis.rs
Original file line number Diff line number Diff line change
Expand Up @@ -472,14 +472,6 @@ macro_rules! impl_common_runtime_apis {
}
}

impl fp_rpc::ConvertTransactionRuntimeApi<Block> for Runtime {
fn convert_transaction(transaction: pallet_ethereum::Transaction) -> <Block as BlockT>::Extrinsic {
UncheckedExtrinsic::new_unsigned(
pallet_ethereum::Call::<Runtime>::transact { transaction }.into(),
)
}
}

impl sp_session::SessionKeys<Block> for Runtime {
fn decode_session_keys(
encoded: Vec<u8>,
Expand Down

0 comments on commit 2b81a36

Please sign in to comment.