Source Code

(define-map votes principal bool)

(define-public (vote (choice bool))
  (begin
    (map-set votes tx-sender choice)
    (ok choice)
  )
)

Functions (1)

FunctionAccessArgs
votepublicchoice: bool