Skip to main content

All Questions

0 votes
1 answer
44 views

execute_block, initialize_block, apply_extrinsic, finalize_block, offchain_worker exists for struct `Executive` but its trait bound were not satisfied

I developed substrate parachain with custom pallets. Actually I wanna add OCW functionality to one of my pallets. After I updated runtime code and added CreateSignedTransaction implementation I tried ...
Artem Levchuk's user avatar
1 vote
1 answer
71 views

Off-chain worker. Error submitting a transaction to the pool: InvalidTransaction::ExhaustsResources [duplicate]

Error submitting a transaction to the pool: Transaction pool error: Invalid transaction validity: InvalidTransaction::ExhaustsResources It works fine in standalone but in parachain it fails. Off chain ...
rust.dev's user avatar
  • 529
0 votes
1 answer
61 views

How to enable off-chain workers for parachain via command line?

There is no any logs and off-chain workers does not work by default. How to specify to enable workers for parachain via command?
rust.dev's user avatar
  • 529
0 votes
1 answer
94 views

Implementing an Identity Management pallet, would be more efficient in a Relay or Parachain?

I'm implementing an Identity Management pallet for an administrative ecosystem. Suppose that using the same architecture as Polkadot. Questions It would be more secure, efficient and scalable to have ...
Alexandre Ribeiro's user avatar
1 vote
0 answers
56 views

Enabling Offchain workers in a parachain

I know the way to enable ocw in a solo chain is to edit the service.rs as per the documentation and it works perfectly. I have tried making equivalent changes to the service.rs in my parachain but ...
rh00's user avatar
  • 33