forked from NextGraph/nextgraph-rs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
449 B
21 lines
449 B
1 year ago
|
import {
|
||
|
default as ng,
|
||
|
} from "./api";
|
||
|
|
||
|
onmessage = (e) => {
|
||
|
//console.log("Message received by worker", e.data);
|
||
|
(async function() {
|
||
|
try {
|
||
|
let secret_wallet = await ng.wallet_open_wallet_with_pazzle(
|
||
|
e.data.wallet,
|
||
|
e.data.pazzle,
|
||
|
e.data.pin_code
|
||
|
);
|
||
|
postMessage({success:secret_wallet});
|
||
|
} catch (e) {
|
||
|
postMessage({error:e});
|
||
|
}
|
||
|
})();
|
||
|
};
|
||
|
|
||
|
|