tigerbeetle-node 0.13.36 → 0.13.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/aarch64-linux-gnu/client.node +0 -0
- package/dist/bin/aarch64-linux-musl/client.node +0 -0
- package/dist/bin/aarch64-macos/client.node +0 -0
- package/dist/bin/x86_64-linux-gnu/client.node +0 -0
- package/dist/bin/x86_64-linux-musl/client.node +0 -0
- package/dist/bin/x86_64-macos/client.node +0 -0
- package/package.json +1 -1
- package/src/node.zig +0 -4
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
package/src/node.zig
CHANGED
|
@@ -221,7 +221,6 @@ pub fn decode_events(
|
|
|
221
221
|
.create_transfers => try decode_events_from_array(env, array, Transfer, output),
|
|
222
222
|
.lookup_accounts => try decode_events_from_array(env, array, u128, output),
|
|
223
223
|
.lookup_transfers => try decode_events_from_array(env, array, u128, output),
|
|
224
|
-
else => unreachable,
|
|
225
224
|
};
|
|
226
225
|
}
|
|
227
226
|
|
|
@@ -688,9 +687,6 @@ fn on_result(user_data: u128, operation: Operation, results: Client.Error![]cons
|
|
|
688
687
|
|
|
689
688
|
if (results) |value| {
|
|
690
689
|
const napi_results = switch (operation) {
|
|
691
|
-
.reserved, .root, .register => {
|
|
692
|
-
translate.throw(env, "Reserved operation.") catch return;
|
|
693
|
-
},
|
|
694
690
|
.create_accounts => encode_napi_results_array(
|
|
695
691
|
CreateAccountsResult,
|
|
696
692
|
env,
|