remove some unused imports from new sighash_rangeproof test

This commit is contained in:
Andrew Poelstra 2021-03-26 23:24:08 +00:00
parent e801e951df
commit 7575e050bb

View file

@ -15,14 +15,9 @@ from test_framework.script import (
LegacySignatureHash, LegacySignatureHash,
SegwitV0SignatureHash, SegwitV0SignatureHash,
SIGHASH_ALL, SIGHASH_ALL,
SIGHASH_SINGLE,
SIGHASH_NONE,
SIGHASH_ANYONECANPAY,
SIGHASH_RANGEPROOF, SIGHASH_RANGEPROOF,
CScript, CScript,
CScriptOp, CScriptOp,
FindAndDelete,
OP_CODESEPARATOR,
OP_CHECKSIG, OP_CHECKSIG,
OP_DUP, OP_DUP,
OP_EQUALVERIFY, OP_EQUALVERIFY,
@ -33,10 +28,8 @@ from test_framework.key import ECKey
from test_framework.messages import ( from test_framework.messages import (
CBlock, CBlock,
CTransaction, CTransaction,
CTxOut,
FromHex, FromHex,
WitToHex, WitToHex
hash256, uint256_from_str, ser_uint256, ser_string, ser_vector
) )
from test_framework import util from test_framework import util