wire_incept method

void wire_incept(
  1. int port_,
  2. Pointer<wire_list_public_key> public_keys,
  3. Pointer<wire_list_public_key> next_pub_keys,
  4. Pointer<wire_StringList> witnesses,
  5. int witness_threshold,
)

Implementation

void wire_incept(
  int port_,
  ffi.Pointer<wire_list_public_key> public_keys,
  ffi.Pointer<wire_list_public_key> next_pub_keys,
  ffi.Pointer<wire_StringList> witnesses,
  int witness_threshold,
) {
  return _wire_incept(
    port_,
    public_keys,
    next_pub_keys,
    witnesses,
    witness_threshold,
  );
}