Method: Radiator::Mixins::ActsAsPoster#delete_comment

Defined in:
lib/radiator/mixins/acts_as_poster.rb

#delete_comment(permlink) ⇒ Object

Create a delete_comment operation.

Examples:

steem = Radiator::Chain.new(chain: :steem, account_name: 'your account name', wif: 'your wif')
steem.delete_comment('permlink')
steem.broadcast!

Parameters:

  • permlink

103
104
105
106
107
108
109
110
111
# File 'lib/radiator/mixins/acts_as_poster.rb', line 103

def delete_comment(permlink)
  @operations << {
    type: :delete_comment,
    author: ,
    permlink: permlink
  }
  
  self
end