Barretenberg
The ZK-SNARK library at the core of Aztec
Loading...
Searching...
No Matches
promise.cpp
Go to the documentation of this file.
1
2#include "napi.h"
3
4namespace bb::nodejs {
5
6Napi::Promise promise_reject(const Napi::Env& env, const Napi::Value& err)
7{
8 auto def = Napi::Promise::Deferred::New(env);
9 def.Reject(err);
10 return def.Promise();
11}
12} // namespace bb::nodejs
Napi::Promise promise_reject(const Napi::Env &env, const Napi::Value &err)
Definition promise.cpp:6