Skip to content

Commit

Permalink
dao: Link proposals update permission to dao authority
Browse files Browse the repository at this point in the history
  • Loading branch information
jeisses committed Jan 8, 2023
1 parent 8f9f51d commit fd8ca09
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions deploy/mainnet20221230.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,22 @@
:code "eosio.msig"
:type "propose"}
[{:actor prop-acc :permission "active"}]))
(<p! (eos/transact "eosio" "linkauth"
{:account prop-acc
:requirement "dao"
:code "eosio.msig"
:type "approve"}
[{:actor prop-acc :permission "active"}]))
(<p! (eos/transact
"eosio"
"linkauth"
{:account prop-acc
:requirement "dao"
:code "eosio.msig"
:type "approve"}
[{:actor prop-acc :permission "active"}]))
(<p! (eos/transact
"eosio"
"linkauth"
{:account prop-acc
:requirement "dao"
:code prop-acc
:type "update"}
[{:actor prop-acc :permission "active"}]))

;; allow setfee in force.efx
(<p! (eos/update-auth
Expand Down

0 comments on commit fd8ca09

Please sign in to comment.