Skip to content

Commit b208b28

Browse files
committed
fix bug in listreceivedbyaddress
1 parent 0df3791 commit b208b28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bitcoin/connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ def listreceivedbyaddress(self, minconf=1, includeempty=False):
281281
282282
"""
283283
try:
284-
return [AddressInfo(*x) for x in self.proxy.listreceivedbyaddress(minconf, includeempty)]
284+
return [AddressInfo(**x) for x in self.proxy.listreceivedbyaddress(minconf, includeempty)]
285285
except JSONRPCException,e:
286286
raise _wrap_exception(e.error)
287287

0 commit comments

Comments
 (0)