Remove deprecated authorities function (#2785)

* Remove deprecated authorities function

* Bump spec

* Fixes compilation

* Remove last piece
This commit is contained in:
Bastian Köcher
2019-06-04 22:28:18 +02:00
committed by GitHub
parent 9ae3082ef0
commit 4d9efbc1d5
11 changed files with 741 additions and 296 deletions
@@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with Substrate. If not, see <http://www.gnu.org/licenses/>.
use runtime_primitives::traits::{GetNodeBlockType, Block as BlockT, AuthorityIdFor};
use runtime_primitives::traits::{GetNodeBlockType, Block as BlockT};
use runtime_primitives::generic::BlockId;
use client::runtime_api::{self, RuntimeApiInfo};
use client::{error::Result, decl_runtime_apis, impl_runtime_apis};
@@ -74,9 +74,6 @@ impl_runtime_apis! {
fn initialize_block(_: &<Block as BlockT>::Header) {
unimplemented!()
}
fn authorities() -> Vec<AuthorityIdFor<Block>> {
unimplemented!()
}
}
}