git.delta.rocks / unique-network / refs/commits / b6babd242523

difftreelog

Merge branch 'master' of github.com:usetech-llc/nft_parachain

Greg Zaitsev2020-07-27parents: #e9291bd #9f0b3c2.patch.diff
in: master

4 files changed

modifiednode/src/chain_spec.rsdiffbeforeafterboth
115 balances: endowed_accounts115 balances: endowed_accounts
116 .iter()116 .iter()
117 .cloned()117 .cloned()
118 .map(|k| (k, 1 << 60))118 .map(|k| (k, 1 << 100))
119 .collect(),119 .collect(),
120 }),120 }),
121 aura: Some(AuraConfig {121 aura: Some(AuraConfig {
modifiedpallets/nft/src/lib.rsdiffbeforeafterboth
108 AccountId = <T as system::Trait>::AccountId,108 AccountId = <T as system::Trait>::AccountId,
109 {109 {
110 Created(u64, AccountId),110 Created(u64, AccountId),
111 ItemCreated(u64),111 ItemCreated(u64, u64),
112 ItemDestroyed(u64, u64),112 ItemDestroyed(u64, u64),
113 }113 }
114);114);
352 <ItemList<T>>::insert((collection_id, current_index), new_item);352 <ItemList<T>>::insert((collection_id, current_index), new_item);
353353
354 // call event354 // call event
355 Self::deposit_event(RawEvent::ItemCreated(collection_id));355 Self::deposit_event(RawEvent::ItemCreated(collection_id, current_index));
356356
357 Ok(())357 Ok(())
358 }358 }
modifiedsmart_contract/ink-types-node-runtime/.gitignorediffbeforeafterboth
1# Ignore build artifacts1# Ignore build artifacts
2/target/2/target/
3/**/target/3/examples/**/target/
44
5# Ignore backup files creates by cargo fmt.5# Ignore backup files creates by cargo fmt.
6**/*.rs.bk6**/*.rs.bk
13**/.vscode/**13**/.vscode/**
1414
15# Ignore history files.15# Ignore history files.
16**/.history/**16**/.history/**
17
modifiedsmart_contract/ink-types-node-runtime/calls/lib.rsdiffbeforeafterboth
105 }105 }
106 }106 }
107
108 #[ink(message)]
109 fn get_test(&self) -> bool {
110 true
111 }
112107
113 #[ink(message)]108 #[ink(message)]
114 fn transfer_from(&self, collection_id: u64, item_id: u64, new_owner: AccountId) {109 fn transfer_from(&self, collection_id: u64, item_id: u64, new_owner: AccountId) {