JoshOrndorff / utxo-workshop

A Substrate UTXO workshop
The Unlicense
117 stars 81 forks source link

Remove tight coupling to Aura #53

Closed JoshOrndorff closed 4 years ago

JoshOrndorff commented 4 years ago

Transaction fees are paid out to authorities in on_finalize. This is good. The authorities are read directly from the Aura pallet which is bad because it means this pallet won't work with Babe, PoW etc.

Instead the pallet should be loosely coupled via a trait bound in its own configuration trait.