You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 15, 2021. It is now read-only.
Copy file name to clipboardExpand all lines: docs/source/neo/SmartContract/application-vs-verification.rst
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -2,8 +2,8 @@
2
2
Application vs. Verification
3
3
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4
4
5
-
Now that you have built, tested, and testinvoked your SC, you may be asking, what is this ``Verification`` step, and how do I programatically interact with it?
6
-
Lets start out with our example from before of tracking a balance, and restrict it so that only an 'owner' address can perform operations on it. Heres the Smart Contract code:
5
+
Now that you have built, tested, and test invoked your SC, you may be asking, what is this ``Verification`` step, and how do I programmatically interact with it?
6
+
Lets start out with our example from before of tracking a balance, and restrict it so that only an 'owner' address can perform operations on it. Here's the Smart Contract code:
7
7
8
8
.. code-block:: python
9
9
@@ -18,7 +18,7 @@ Lets start out with our example from before of tracking a balance, and restrict
18
18
print("Running Sample v4")
19
19
trigger = GetTrigger()
20
20
21
-
# This determines that the SC is runnning in Verification mode
21
+
# This determines that the SC is running in Verification mode
22
22
# This determines whether the TX will be relayed to the rest of the network
23
23
# The `Verification` portion of SC is *read-only*, so calls to `Storage.Put` will fail.
24
24
# You can, however, use `Storage.Get`
@@ -81,7 +81,7 @@ We will turn on ``sc-events`` to make sure we can see exactly what is going on.
81
81
.. code-block:: sh
82
82
83
83
neo>
84
-
neo>build docs/source/neo/example/sample4.py test 070202 02 True False add AG4GfwjnvydAZodm4xEDivguCtjCFzLcJy 7
0 commit comments