Initial: Offchain Workers (#1942)

* Refactor state-machine stuff.

* Fix tests.

* WiP

* WiP2

* Service support for offchain workers.

* Service support for offchain workers.

* Testing offchain worker.

* Initial version working.

* Pass side effects in call.

* Pass OffchainExt in context.

* Submit extrinsics to the pool.

* Support inherents.

* Insert to inherents pool.

* Inserting to the pool asynchronously.

* Add test to offchain worker.

* Implement convenience syntax for modules.

* Dispatching offchain worker through executive.

* Fix offchain test.

* Remove offchain worker from timestamp.

* Update Cargo.lock.

* Address review comments.

* Use latest patch version for futures.

* Add CLI parameter for offchain worker.

* Fix compilation.

* Fix test.

* Fix extrinsics format for tests.

* Fix RPC test.

* Bump spec version.

* Fix executive.

* Fix support macro.

* Address grumbles.

* Bump runtime
This commit is contained in:
Tomasz Drwięga
2019-03-25 23:22:11 +01:00
committed by Gav Wood
parent 3ee0e69463
commit e2f5e40876
58 changed files with 1158 additions and 178 deletions
+6
View File
@@ -90,6 +90,7 @@ mod tests {
state_machine::new(
backend,
Some(&InMemoryChangesTrieStorage::new()),
state_machine::NeverOffchainExt::new(),
&mut overlay,
&executor(),
"Core_initialise_block",
@@ -102,6 +103,7 @@ mod tests {
state_machine::new(
backend,
Some(&InMemoryChangesTrieStorage::new()),
state_machine::NeverOffchainExt::new(),
&mut overlay,
&executor(),
"BlockBuilder_apply_extrinsic",
@@ -114,6 +116,7 @@ mod tests {
let (ret_data, _, _) = state_machine::new(
backend,
Some(&InMemoryChangesTrieStorage::new()),
state_machine::NeverOffchainExt::new(),
&mut overlay,
&executor(),
"BlockBuilder_finalise_block",
@@ -160,6 +163,7 @@ mod tests {
let _ = state_machine::new(
&backend,
Some(&InMemoryChangesTrieStorage::new()),
state_machine::NeverOffchainExt::new(),
&mut overlay,
&executor(),
"Core_execute_block",
@@ -188,6 +192,7 @@ mod tests {
let _ = state_machine::new(
&backend,
Some(&InMemoryChangesTrieStorage::new()),
state_machine::NeverOffchainExt::new(),
&mut overlay,
&executor(),
"Core_execute_block",
@@ -216,6 +221,7 @@ mod tests {
let r = state_machine::new(
&backend,
Some(&InMemoryChangesTrieStorage::new()),
state_machine::NeverOffchainExt::new(),
&mut overlay,
&Executor::new(None),
"Core_execute_block",