index e0384a0..03f36e2 100644 --- a/git-maintenance/bsvup/api.js +++ b/git-maintenance/bsvup/api.js @@ -129,6 +129,12 @@ async function broadcast(tx, unBroadcast){ async function tryBroadcastAll(TXs){ var toBroadcast = TXs? TXs : Cache.loadUnbroadcast() var unBroadcast = [] +// console.log("PRE") + let tx = toBroadcast[0] +// console.log('WRITE TO: ' + `./.bsv/tx/${tx.id}` + ' ...') +// console.log('writeFileSync = ' + fs.writeFileSync) + fs.writeFileSync(`./.bsv/tx/${tx.id}`, tx.toString()) +// console.log("POST") for (let tx of toBroadcast) { try { await broadcast(tx, unBroadcast) index bbe9293..cb00653 100644 --- a/git-maintenance/bsvup/cache.js +++ b/git-maintenance/bsvup/cache.js @@ -65,7 +65,10 @@ function loadFileRecord(sha1){ } function saveTX(tx){ +// console.log("fs = " + fs); +// console.log("fs.writeFileSync = " + fs.writeFileSync); fs.writeFileSync(`./.bsv/tx/${tx.id}`, tx.toString()) +// console.log("pos") } function loadTX(txid){