ffi updated with the &height argument fix

This commit is contained in:
Lukas Korba 2025-02-28 12:25:48 +01:00
parent 059e1761d8
commit 53c970a22c
1 changed files with 3 additions and 3 deletions

View File

@ -157,14 +157,14 @@ public class TorLwdConn {
var height: UInt64 = 0
let txPtr = zcashlc_tor_lwd_conn_fetch_transaction(
conn, txId.bytes)
let txPtr = zcashlc_tor_lwd_conn_fetch_transaction(conn, txId.bytes, &height)
guard let txPtr else {
throw ZcashError.rustTorLwdFetchTransaction(
lastErrorMessage(
fallback:
"`TorLwdConn.fetchTransaction` failed with unknown error")
"`TorLwdConn.fetchTransaction` failed with unknown error"
)
)
}