@@ -181,10 +181,10 @@ async.waterfall([
181
181
console . log ( 'Bitcoind did not return a signed transaction' ) ;
182
182
return cb ( new Error ( 'Missing signed tx' ) ) ;
183
183
}
184
- cb ( null , signedTransaction . hex ) ;
184
+ cb ( null , fundedRawTransaction , signedTransaction . hex ) ;
185
185
} ) ;
186
186
} ,
187
- function displayTransactionToUserForApproval ( signedRawTransaction , cb ) {
187
+ function getSignedTransactionSize ( fundedRawTransaction , signedRawTransaction , cb ) {
188
188
let command = {
189
189
jsonrpc : '1.0' ,
190
190
method : 'decoderawtransaction' ,
@@ -197,52 +197,88 @@ async.waterfall([
197
197
return cb ( err ) ;
198
198
}
199
199
if ( ! decodedTransaction ) {
200
- console . log ( 'Bitcoind did not return a decoded transaction' ) ;
200
+ console . log ( 'Bitcoind did not decode the transaction' ) ;
201
201
return cb ( new Error ( 'Missing decoded tx' ) ) ;
202
202
}
203
-
204
- console . log ( JSON . stringify ( decodedTransaction , null , 2 ) ) ;
205
-
206
- promptly . confirm ( 'Send payment shown above? (y/n)' , function ( err , accept ) {
207
- if ( ! accept ) {
208
- console . log ( 'Payment cancelled' ) ;
209
- return cb ( new Error ( 'Payment Cancelled' ) ) ;
210
- }
211
- return cb ( null , signedRawTransaction ) ;
212
- } ) ;
203
+ cb ( null , fundedRawTransaction , signedRawTransaction , decodedTransaction . vsize ) ;
213
204
} ) ;
214
205
} ,
215
- function sendTransactionToServer ( signedRawTransaction , cb ) {
216
- paymentProtocol . sendPayment ( config . currency , signedRawTransaction , paymentUrl , function ( err , response ) {
206
+ function checkIfTransactionWillBeAccepted ( fundedRawTransaction , signedRawTransaction , weightedSize , cb ) {
207
+ console . log ( 'Sending unsigned transaction to server for verification...' ) ;
208
+
209
+ paymentProtocol . sendPaymentForVerification ( config . currency , fundedRawTransaction , weightedSize , paymentUrl , ( err ) => {
217
210
if ( err ) {
218
- console . log ( 'Error sending payment to server' , err ) ;
211
+ console . log ( 'Error verifying payment with server' , err ) ;
219
212
return cb ( err ) ;
220
- }
221
- else {
222
- console . log ( 'Payment accepted by server' ) ;
213
+ } else {
214
+ console . log ( 'Payment verified by server' ) ;
223
215
return cb ( null , signedRawTransaction ) ;
224
216
}
225
217
} ) ;
226
218
} ,
227
- //Note we only broadcast AFTER a SUCCESS response from the server
228
- function broadcastPayment ( signedRawTransaction , cb ) {
219
+ //Note we only broadcast AFTER a SUCCESS response from the server verification request
220
+ function displayTransactionToUserForApproval ( signedRawTransaction , cb ) {
229
221
let command = {
230
222
jsonrpc : '1.0' ,
231
- method : 'sendrawtransaction ' ,
223
+ method : 'decoderawtransaction ' ,
232
224
params : [ signedRawTransaction ]
233
225
} ;
234
226
235
- execRpcCommand ( command , function ( err , signedTransaction ) {
227
+ execRpcCommand ( command , function ( err , decodedTransaction ) {
236
228
if ( err ) {
237
- console . log ( 'Error broadcasting transaction:' , err ) ;
229
+ console . log ( 'Error signing transaction:' , err ) ;
238
230
return cb ( err ) ;
239
231
}
240
- if ( ! signedTransaction ) {
241
- console . log ( 'Bitcoind failed to broadcast transaction' ) ;
242
- return cb ( new Error ( 'Failed to broadcast tx' ) ) ;
232
+ if ( ! decodedTransaction ) {
233
+ console . log ( 'Bitcoind did not return a decoded transaction' ) ;
234
+ return cb ( new Error ( 'Missing decoded tx' ) ) ;
243
235
}
244
- cb ( ) ;
236
+
237
+ console . log ( JSON . stringify ( decodedTransaction , null , 2 ) ) ;
238
+
239
+ promptly . confirm ( 'Send payment shown above? (y/n)' , function ( err , accept ) {
240
+ if ( ! accept ) {
241
+ console . log ( 'Payment cancelled' ) ;
242
+ return cb ( new Error ( 'Payment Cancelled' ) ) ;
243
+ }
244
+ return cb ( null , signedRawTransaction ) ;
245
+ } ) ;
245
246
} ) ;
247
+ } ,
248
+ function broadcastPayment ( signedRawTransaction , cb ) {
249
+ async . parallel ( [
250
+ function sendToServer ( cb ) {
251
+ paymentProtocol . broadcastPayment ( config . currency , signedRawTransaction , paymentUrl , function ( err ) {
252
+ if ( err ) {
253
+ console . log ( 'Error sending payment to server' , err ) ;
254
+ return cb ( err ) ;
255
+ }
256
+ else {
257
+ console . log ( 'Payment accepted by server' ) ;
258
+ return cb ( null , signedRawTransaction ) ;
259
+ }
260
+ } ) ;
261
+ } ,
262
+ function broadcastP2P ( cb ) {
263
+ let command = {
264
+ jsonrpc : '1.0' ,
265
+ method : 'sendrawtransaction' ,
266
+ params : [ signedRawTransaction ]
267
+ } ;
268
+
269
+ execRpcCommand ( command , function ( err , signedTransaction ) {
270
+ if ( err ) {
271
+ console . log ( 'Error broadcasting transaction:' , err ) ;
272
+ return cb ( err ) ;
273
+ }
274
+ if ( ! signedTransaction ) {
275
+ console . log ( 'Bitcoind failed to broadcast transaction' ) ;
276
+ return cb ( new Error ( 'Failed to broadcast tx' ) ) ;
277
+ }
278
+ cb ( ) ;
279
+ } ) ;
280
+ }
281
+ ] , cb ) ;
246
282
}
247
283
] , function ( err ) {
248
284
if ( err ) {
0 commit comments