Method: EverSdk::Proofs.proof_transaction_data

Defined in:
lib/ever_sdk_client/proofs.rb

.proof_transaction_data(ctx, params) ⇒ Object



37
38
39
40
41
42
43
44
45
46
47
# File 'lib/ever_sdk_client/proofs.rb', line 37

def self.proof_transaction_data(ctx, params)
  Interop::request_to_native_lib(ctx, "proofs.proof_transaction_data", params) do |resp|
    if resp.success?
      yield NativeLibResponseResult.new(
        result: ""
      )
    else
      yield resp
    end
  end
end