select_txos needs a join on tx table
This commit is contained in:
parent
9aa22e1071
commit
1d84440b74
1 changed files with 3 additions and 1 deletions
|
@ -376,7 +376,9 @@ class BaseDatabase(SQLiteMixin):
|
||||||
|
|
||||||
def select_txos(self, cols, **constraints):
|
def select_txos(self, cols, **constraints):
|
||||||
return self.run_query(*query(
|
return self.run_query(*query(
|
||||||
"SELECT {} FROM txo JOIN pubkey_address USING (address)".format(cols), **constraints
|
"SELECT {} FROM txo"
|
||||||
|
" JOIN pubkey_address USING (address)"
|
||||||
|
" JOIN tx USING (txid)".format(cols), **constraints
|
||||||
))
|
))
|
||||||
|
|
||||||
@defer.inlineCallbacks
|
@defer.inlineCallbacks
|
||||||
|
|
Loading…
Reference in a new issue