X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=ldk-java;a=blobdiff_plain;f=ts%2Fstructs%2FNodeId.mts;h=9b65a95efb0b866e03013cf8f6661bd3cedfed31;hp=2faf5cef2588d622f7be2979b1ed0efef0887ce3;hb=7d372e434499e36b8be0d090ef733a03650dec6e;hpb=d87886bb194886ef86d3597a5cdc142b6ccc89e9 diff --git a/ts/structs/NodeId.mts b/ts/structs/NodeId.mts index 2faf5cef..9b65a95e 100644 --- a/ts/structs/NodeId.mts +++ b/ts/structs/NodeId.mts @@ -279,7 +279,6 @@ import { MultiThreadedLockableScore } from '../structs/MultiThreadedLockableScor import CommonBase from './CommonBase.mjs'; import * as bindings from '../bindings.mjs' -import * as InternalUtils from '../InternalUtils.mjs' export class NodeId extends CommonBase { @@ -301,29 +300,31 @@ export class NodeId extends CommonBase { } public static constructor_from_pubkey(pubkey: Uint8Array): NodeId { - const ret: number = bindings.NodeId_from_pubkey(InternalUtils.check_arr_len(pubkey, 33)); + const ret: number = bindings.NodeId_from_pubkey(bindings.encodeUint8Array(bindings.check_arr_len(pubkey, 33))); const ret_hu_conv: NodeId = new NodeId(null, ret); CommonBase.add_ref_from(ret_hu_conv, ret_hu_conv); return ret_hu_conv; } public as_slice(): Uint8Array { - const ret: Uint8Array = bindings.NodeId_as_slice(this.ptr); - return ret; + const ret: number = bindings.NodeId_as_slice(this.ptr); + const ret_conv: Uint8Array = bindings.decodeUint8Array(ret); + return ret_conv; } - public hash(): number { - const ret: number = bindings.NodeId_hash(this.ptr); + public hash(): bigint { + const ret: bigint = bindings.NodeId_hash(this.ptr); return ret; } public write(): Uint8Array { - const ret: Uint8Array = bindings.NodeId_write(this.ptr); - return ret; + const ret: number = bindings.NodeId_write(this.ptr); + const ret_conv: Uint8Array = bindings.decodeUint8Array(ret); + return ret_conv; } public static constructor_read(ser: Uint8Array): Result_NodeIdDecodeErrorZ { - const ret: number = bindings.NodeId_read(ser); + const ret: number = bindings.NodeId_read(bindings.encodeUint8Array(ser)); const ret_hu_conv: Result_NodeIdDecodeErrorZ = Result_NodeIdDecodeErrorZ.constr_from_ptr(ret); return ret_hu_conv; }