chip money pallet for polkadot games
runtime/Cargo.toml
``` [dependencies] ... // Add this code pallet-dotchip = { default-features = false, version = '1.0.0' }
[features] default = ['std'] runtime-benchmarks = [ ... ] std = [ ... // Add this code 'pallet-dotchip/std' ] ```
runtime/src/lib.rs
``` // Add this code impl pallet-dotchip::Config for Runtime { type Event = Event; type Currency = Balances; }
construct_runtime!(
pub enum Runtime where
Block = Block,
NodeBlock = opaque::Block,
UncheckedExtrinsic = UncheckedExtrinsic
{
...
// Add this code
DotChip: pallet-dotchip::{Module, Call, Storage, Event
cargo test