From 094f150b6fc7eaf8112468ef70f29533fe7d5b22 Mon Sep 17 00:00:00 2001 From: Kresna Sucandra Date: Sat, 3 Jul 2021 16:01:41 +0800 Subject: [PATCH] Update Super Runtime snippet to Substrate 3.0 --- text/introduction.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/text/introduction.md b/text/introduction.md index f0f22fab1..cb3530202 100644 --- a/text/introduction.md +++ b/text/introduction.md @@ -156,8 +156,8 @@ Having seen that the Kitchen Node depends on a runtime, let us now look deeper a # -- snip -- # Substrate Pallets -balances = { package = 'pallet-balances', , ... } -transaction-payment = { package = 'pallet-transaction-payment', ,... } +pallet-balances = { version = '3.0', default-features = false } +pallet-transaction-payment = { version = '3.0', default-features = false } # Recipe Pallets adding-machine = { path = "../../pallets/adding-machine", default-features = false } basic-token = { path = "../../pallets/basic-token", default-features = false }