docs: update Node.JS example

Fixes #8333 by not using the outdated `bytebuffer` library anymore.
This commit is contained in:
Oliver Gugger 2024-01-04 09:13:59 +01:00
parent 319a5dab5c
commit 3a7e564582
No known key found for this signature in database
GPG key ID: 8E4256593F177720

View file

@ -123,7 +123,7 @@ invoice.
This example has a few dependencies:
```shell
$ npm install --save async lodash bytebuffer
$ npm install --save async lodash
```
You can run the following in your shell or put it in a program and run it like
@ -133,10 +133,9 @@ You can run the following in your shell or put it in a program and run it like
// Load some libraries specific to this example
const async = require('async');
const _ = require('lodash');
const ByteBuffer = require('bytebuffer');
let dest_pubkey = <RECEIVER_ID_PUBKEY>;
let dest_pubkey_bytes = ByteBuffer.fromHex(dest_pubkey);
let dest_pubkey_bytes = new Buffer(dest_pubkey, "hex");
// Set a listener on the bidirectional stream
let call = lightning.sendPayment();