mirror of
https://github.com/pezkuwichain/pezkuwi-runtime-templates.git
synced 2026-04-22 05:37:57 +00:00
RPC Differences Documentation and RPC Testing Toolkit (#241)
* Added RPC testing toolkit with docs * Add documentation * fix comments --------- Co-authored-by: Amar Singh <asinghchrony@protonmail.com>
This commit is contained in:
committed by
Gustavo Gonzalez
parent
29c6332022
commit
cdba7fea87
@@ -0,0 +1,13 @@
|
||||
contract Storage {
|
||||
uint pos0;
|
||||
|
||||
constructor() {
|
||||
pos0 = 1234;
|
||||
}
|
||||
|
||||
// You can read from a state variable without sending a transaction.
|
||||
function get() public view returns (uint) {
|
||||
return pos0;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user