mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-15 12:51:00 +02:00
fix missing includes
This commit is contained in:
parent
66c015529e
commit
4489ede527
3 changed files with 3 additions and 1 deletions
|
|
@ -22,6 +22,7 @@
|
|||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#include <signal.h>
|
||||
#include <deque>
|
||||
|
||||
#include <event2/thread.h>
|
||||
#include <event2/buffer.h>
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
#include <qt/clientmodel.h>
|
||||
|
||||
#include <QPainter>
|
||||
#include <QPainterPath>
|
||||
#include <QColor>
|
||||
#include <QTimer>
|
||||
|
||||
|
|
|
|||
|
|
@ -382,7 +382,7 @@ class IssuanceTest(BitcoinTestFramework):
|
|||
assert_equal(blinded_multisig, self.nodes[0].getaddressinfo(utxo_info["address"])["confidential"])
|
||||
break
|
||||
assert(utxo_info is not None)
|
||||
assert(utxo_info["amountblinder"] is not "0000000000000000000000000000000000000000000000000000000000000000")
|
||||
assert(utxo_info["amountblinder"] != "0000000000000000000000000000000000000000000000000000000000000000")
|
||||
|
||||
# Now make transaction spending that input
|
||||
raw_tx = self.nodes[0].createrawtransaction([], {issued_address:1}, 0, False, {issued_address:issued_asset["token"]})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue