diff --git a/contracts/proposals/ccip019-pox-4-stacking.clar b/contracts/proposals/ccip019-pox-4-stacking.clar index 484052c..0cb3a13 100644 --- a/contracts/proposals/ccip019-pox-4-stacking.clar +++ b/contracts/proposals/ccip019-pox-4-stacking.clar @@ -121,6 +121,11 @@ ) ;; update vote stats for each city (update-city-votes MIA_ID miaVoteAmount vote true) + ;; print voter info + (print { + notification: "vote-on-ccip-019", + payload: (get-voter-info voterId) + }) (ok true) ) ;; if the voterRecord does not exist @@ -137,6 +142,11 @@ }) ERR_SAVING_VOTE) ;; update vote stats for each city (update-city-votes MIA_ID miaVoteAmount vote false) + ;; print voter info + (print { + notification: "vote-on-ccip-019", + payload: (get-voter-info voterId) + }) (ok true) ) )