From 17d8ac8d74533d1c907b555a9a669d64e4b01cc1 Mon Sep 17 00:00:00 2001 From: Richard 'ragmondo' Green Date: Sat, 11 Oct 2014 22:44:39 +0100 Subject: [PATCH] Made the sys.path.append more obvious --- examples/src/main/python/forwarding.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/src/main/python/forwarding.py b/examples/src/main/python/forwarding.py index d8ceb467..2f85a833 100644 --- a/examples/src/main/python/forwarding.py +++ b/examples/src/main/python/forwarding.py @@ -6,7 +6,7 @@ __author__ = "richard 'ragmondo' green" import sys # Change this to point to where you have a copy of the bitcoinj.jar -sys.path.append(r"/home/richard/code/libs/bitcoinj-core-0.12-bundled.jar") +sys.path.append(r"/path/to/bitcoinj-core-0.12-bundled.jar") # This is the address to forward all payments to. Change this (unless you want to send me some testnet coins) my_address_text = "mzEjmna15T7DXj4HC9MBEG2UJzgFfEYtFo" @@ -92,4 +92,4 @@ if __name__ == "__main__": print "send test coins to ", sendToAddress, "qrcode - http://qrickit.com/api/qr?d=%s" % (sendToAddress) # no affiliation with qrickit.. sl = SenderListener(pg,my_address) wallet.addEventListener(sl) - print "finished initialising .. now in main event loop" \ No newline at end of file + print "finished initialising .. now in main event loop"