git.delta.rocks / unique-network / refs/commits / 97765fef60a1

difftreelog

Smart contract updated to rc3

str-mv2020-07-14parent: #d89590b.patch.diff
in: master

2 files changed

modifiedsmart_contract/ink-types-node-runtime/examples/calls/Cargo.lockdiffbeforeafterboth
after · smart_contract/ink-types-node-runtime/examples/calls/Cargo.lock
204 packageslockfile v1
modifiedsmart_contract/ink-types-node-runtime/examples/calls/lib.rsdiffbeforeafterboth
--- a/smart_contract/ink-types-node-runtime/examples/calls/lib.rs
+++ b/smart_contract/ink-types-node-runtime/examples/calls/lib.rs
@@ -22,8 +22,7 @@
             // create the Balances::transfer Call
             let transfer_call = runtime_calls::transfer_balance(dest, value);
             // dispatch the call to the runtime
-            // let result = self.env().invoke_runtime(&transfer_call);
-            let _ = self.env().invoke_runtime(&transfer_call);
+            let result = self.env().invoke_runtime(&transfer_call);
 
             // report result to console
             // NOTE: println should only be used on a development chain)