From b39f1424ec434ba0977e71db4e22dbc59dd0216c Mon Sep 17 00:00:00 2001 From: ThomasV Date: Fri, 16 Nov 2012 07:47:00 +0100 Subject: [PATCH] fix for merchant script --- scripts/merchant.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/merchant.py b/scripts/merchant.py index 048884cbe..9f01a01e6 100644 --- a/scripts/merchant.py +++ b/scripts/merchant.py @@ -114,7 +114,7 @@ def process_request(i, amount, confirmations, expires_in, password): print "wrong password ", password return addr = wallet.get_new_address(i, 0) - out_queue.put( ('request',(i,addr,amount,expires_in) )) + out_queue.put( ('request', (i, addr, amount, confirmations, expires_in) )) return addr def get_mpk():