Skip to content

Commit

Permalink
Add some logs
Browse files Browse the repository at this point in the history
  • Loading branch information
n9lsjr committed Feb 19, 2024
1 parent a914eb0 commit c3b154b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion utils/wallet.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,16 +166,21 @@ async function optimizeMessages(wallet, nbrOfTxs, fee = 10000, attempt = 0) {
if (attempt > 10) {
return false
}
console.log("Optimizing!")
if (wallet.getAddresses().length === 1) {
console.log("Creating subwallet!")
const [spendKey, viewKey] = wallet.getPrimaryAddressPrivateKeys()
const subWalletKeys = await crypto.generateDeterministicSubwalletKeys(spendKey, 1)
await wallet.importSubWallet(subWalletKeys.private_key)
console.log("Subwallet created!")
}

const [walletHeight, localHeight, networkHeight] = wallet.getSyncStatus()

let inputs = await wallet.subWallets.getSpendableTransactionInputs(wallet.getAddresses()[1], networkHeight)


console.log("Got inputs!", inputs)

if (inputs.length > 8) {
return inputs.length
}
Expand Down

0 comments on commit c3b154b

Please sign in to comment.