From 919988a69438ef4eab174f26e9fc98662a324769 Mon Sep 17 00:00:00 2001 From: olpc user Date: Fri, 10 Jan 2020 18:18:03 -0800 Subject: workaround to issue --- magic/mysterious-bsvup-error-shift.patch | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 magic/mysterious-bsvup-error-shift.patch (limited to 'magic') diff --git a/magic/mysterious-bsvup-error-shift.patch b/magic/mysterious-bsvup-error-shift.patch new file mode 100644 index 0000000..4f75a30 --- /dev/null +++ b/magic/mysterious-bsvup-error-shift.patch @@ -0,0 +1,30 @@ +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){ -- cgit v1.2.3