Method: Hive::Broadcast.decline_voting_rights
- Defined in:
- lib/hive/broadcast.rb
.decline_voting_rights(options, &block) ⇒ Object
An account can chose to decline their voting rights after a 30 day delay. This includes voting on content and witnesses. **The voting rights cannot be acquired again once they have been declined.** This is only to formalize a smart contract between certain accounts and the community that currently only exists as a social contract.
1153 1154 1155 1156 1157 1158 1159 1160 1161 |
# File 'lib/hive/broadcast.rb', line 1153 def self.decline_voting_rights(, &block) required_fields = %i(account decline) params = [:params] check_required_fields(params, *required_fields) ops = [[:decline_voting_rights, params]] process(.merge(ops: ops), &block) end |