From abb3f22c0e4c4595812f604f85efb46a2bf18400 Mon Sep 17 00:00:00 2001 From: str-mv Date: Thu, 23 Jul 2020 08:05:03 +0000 Subject: [PATCH] Contract update --- --- a/smart_contract/ink-types-node-runtime/.gitignore +++ b/smart_contract/ink-types-node-runtime/.gitignore @@ -1,6 +1,6 @@ # Ignore build artifacts /target/ -/**/target/ +/examples/**/target/ # Ignore backup files creates by cargo fmt. **/*.rs.bk @@ -13,4 +13,4 @@ **/.vscode/** # Ignore history files. -**/.history/** +**/.history/** \ No newline at end of file --- a/smart_contract/ink-types-node-runtime/calls/lib.rs +++ b/smart_contract/ink-types-node-runtime/calls/lib.rs @@ -106,11 +106,6 @@ } #[ink(message)] - fn get_test(&self) -> bool { - true - } - - #[ink(message)] fn transfer_from(&self, collection_id: u64, item_id: u64, new_owner: AccountId) { env::println(&format!( "transfer_from invoke_runtime params {:?}, {:?}, {:?} ", -- gitstuff