DVM starter function for smart contract builder
(increment int)
| 2085 | |
| 2086 | // DVM starter function for smart contract builder |
| 2087 | func dvmFuncExample(increment int) string { |
| 2088 | return `Function new` + fmt.Sprintf("%d", increment) + `() Uint64 |
| 2089 | 10 |
| 2090 | 20 |
| 2091 | 30 RETURN 0 |
| 2092 | End Function` |
| 2093 | } |
| 2094 | |
| 2095 | // Verification overlay for user actions with or without password |
| 2096 | func verificationOverlay(password bool, headerText, subText, dismiss string, callback func(bool)) { |
no outgoing calls
no test coverage detected