human-chocolate-gibbon
SP8EB1G9KDG90EK6YQNKJW2P461QGJDPKQXF919WSource Code
(define-map votes principal bool)
(define-data-var total-votes uint u0)
(define-public (vote)
(begin
(asserts! (is-none (map-get? votes tx-sender)) (err u409))
(map-set votes tx-sender true)
(var-set total-votes (+ (var-get total-votes) u1))
(ok true)
)
)
(define-read-only (get-total-votes)
(var-get total-votes)
)Functions (2)
| Function | Access | Args |
|---|---|---|
| vote | public | |
| get-total-votes | read-only |