Method: Hive::Broadcast.escrow_approve
- Defined in:
- lib/hive/broadcast.rb
.escrow_approve(options, &block) ⇒ Object
The agent and to accounts must approve an escrow transaction for it to be valid on the blockchain.
1066 1067 1068 1069 1070 1071 1072 1073 1074 |
# File 'lib/hive/broadcast.rb', line 1066 def self.escrow_approve(, &block) required_fields = %i(from to agent who escrow_id approve) params = [:params] check_required_fields(params, *required_fields) ops = [[:escrow_approve, params]] process(.merge(ops: ops), &block) end |