X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=ts%2Fstructs%2FLockableScore.mts;h=350e951caee039c4d75fa503ede9105da3a52f3d;hb=f6d7282fcf6324519ea1fe4b584c8d02c95acd9e;hp=56f39be14aa72305609ad11bf8b85149b090ba12;hpb=7cbcc5ef17b8036b2e99980e227c7ca0d44dba7f;p=ldk-java diff --git a/ts/structs/LockableScore.mts b/ts/structs/LockableScore.mts index 56f39be1..350e951c 100644 --- a/ts/structs/LockableScore.mts +++ b/ts/structs/LockableScore.mts @@ -384,7 +384,7 @@ export class LockableScore extends CommonBase { public bindings_instance?: bindings.LDKLockableScore; /* @internal */ - constructor(_dummy: object, ptr: number) { + constructor(_dummy: object, ptr: bigint) { super(ptr, bindings.LockableScore_free); this.bindings_instance = null; } @@ -393,14 +393,14 @@ export class LockableScore extends CommonBase { public static new_impl(arg: LockableScoreInterface): LockableScore { const impl_holder: LDKLockableScoreHolder = new LDKLockableScoreHolder(); let structImplementation = { - lock (): number { + lock (): bigint { const ret: Score = arg.lock(); - const result: number = ret == null ? 0 : CommonBase.get_ptr_of(ret); + const result: bigint = ret == null ? 0n : CommonBase.get_ptr_of(ret); CommonBase.add_ref_from(impl_holder.held, ret); return result; }, } as bindings.LDKLockableScore; - const ptr: number = bindings.LDKLockableScore_new(structImplementation); + const ptr: bigint = bindings.LDKLockableScore_new(structImplementation); impl_holder.held = new LockableScore(null, ptr); impl_holder.held.bindings_instance = structImplementation; @@ -411,7 +411,7 @@ export class LockableScore extends CommonBase { * Returns the locked scorer. */ public lock(): Score { - const ret: number = bindings.LockableScore_lock(this.ptr); + const ret: bigint = bindings.LockableScore_lock(this.ptr); const ret_hu_conv: Score = new Score(null, ret); CommonBase.add_ref_from(ret_hu_conv, this); return ret_hu_conv;