From f56d8764ed3cb8e43d94638b89217af738e8dffe Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Wed, 02 Jun 2021 19:21:25 +0000 Subject: [PATCH] docs: update tx generation comment --- --- a/pallets/nft/src/eth/mod.rs +++ b/pallets/nft/src/eth/mod.rs @@ -151,8 +151,7 @@ pub fn generate_transaction(collection_id: u32, chain_id: u64) -> ethereum::Transaction { let contract = collection_id_to_address(collection_id); - // TODO: Make it work without native runtime by forking ethereum_tx_sign, and - // switching to pure-rust implementation of secp256k1 + // FIXME: Can be done on wasm runtime with https://github.com/paritytech/substrate/pull/8728 #[cfg(feature = "std")] { let signed = ethereum_tx_sign::RawTransaction { -- gitstuff