From 1a4e2b4082ce941fdf8667e77f7df800493c2a5d Mon Sep 17 00:00:00 2001 From: Gregory Sanders Date: Thu, 10 Aug 2017 13:54:37 -0400 Subject: [PATCH] python tutorial: gettransaction needs optional include_watchonly arg --- contrib/assets_tutorial/assets_tutorial.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/assets_tutorial/assets_tutorial.py b/contrib/assets_tutorial/assets_tutorial.py index 556a2e6280..c2d2652a38 100755 --- a/contrib/assets_tutorial/assets_tutorial.py +++ b/contrib/assets_tutorial/assets_tutorial.py @@ -193,11 +193,11 @@ e2.importaddress(blinded_addr) # 5) Now the address can be funded, though e2 will not be able to see values txid = e1.sendtoaddress(blinded_addr, 1) sync_all(e1, e2) -e2.gettransaction(txid) +e2.gettransaction(txid, True) # 6) Import the blinding privkey and decode the values e2.importblindingkey(blinded_addr, blindingkey) -e2.gettransaction(txid) +e2.gettransaction(txid, True) ###### ASSETS #######