Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion class/User.js
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ export class User {
transactions
.filter((tx) => tx.label !== 'external' && !tx.label.includes('openchannel'))
.map((tx) => {
const decodedTx = decodeRawHex(tx.raw_tx_hex);
const decodedTx = decodeRawHex(tx.raw_tx_hex, config.network);
decodedTx.outputs.forEach((vout) =>
outTxns.push({
// mark all as received, since external is filtered out
Expand Down
2 changes: 2 additions & 0 deletions config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
const bitcoin = require('bitcoinjs-lib')
let config = {
network: bitcoin.networks.bitcoin,
enableUpdateDescribeGraph: false,
postRateLimit: 100,
rateLimit: 200,
Expand Down