ligo/test/contracts/vote.mligo

56 lines
1.4 KiB
Plaintext
Raw Normal View History

type storage = {
title : string ;
candidates : (string , int) map ;
voters : address set ;
beginning_time : timestamp ;
finish_time : timestamp ;
}
2019-06-11 02:06:00 +04:00
type init_action = {
title : string ;
beginning_time : timestamp ;
finish_time : timestamp ;
}
type action =
| Vote of string
2019-06-11 02:06:00 +04:00
| Init of init_action
let init (init_params : init_action) (_ : storage) =
let candidates = Map [
("Yes" , 0) ;
("No" , 0)
] in
(
([] : operation list),
{
2019-06-11 02:06:00 +04:00
title = init_params.title ;
candidates = candidates ;
voters = (Set [] : address set) ;
2019-06-11 02:06:00 +04:00
beginning_time = init_params.beginning_time ;
finish_time = init_params.finish_time ;
}
)
let vote (parameter : string) (storage : storage) =
2019-06-11 02:06:00 +04:00
let now = Current.time in
2019-06-11 04:52:09 +04:00
(* let _ = assert (now >= storage.beginning_time && storage.finish_time > now) in *)
2019-06-11 02:06:00 +04:00
let addr = Current.source in
2019-06-11 04:52:09 +04:00
(* let _ = assert (not Set.mem addr storage.voters) in *)
let x = Map.find parameter storage.candidates in
(
([] : operation list),
{
title = storage.title ;
candidates = Map.update parameter (Some (x + 1)) storage.candidates ;
voters = Set.add addr storage.voters ;
beginning_time = storage.beginning_time ;
finish_time = storage.finish_time ;
}
)
2019-06-11 02:06:00 +04:00
let main (action : action) (storage : storage) =
match action with
| Vote p -> vote p storage
| Init ps -> init ps storage