Rename FulfillmentNotInValidBlock to TransactionNotInValidBlock

This commit is contained in:
troymc 2016-10-29 16:35:15 +02:00
parent bd12972aa3
commit 2d6dfaa6f4
4 changed files with 11 additions and 9 deletions

View File

@ -69,9 +69,9 @@ class CyclicBlockchainError(Exception):
"""Raised when there is a cycle in the blockchain"""
class FulfillmentNotInValidBlock(Exception):
"""Raised when a transaction depends on an invalid or undecided
fulfillment"""
class TransactionNotInValidBlock(Exception):
"""Raised when a transfer transaction is attempting to fulfill the
conditions of a transaction that is in an invalid or undecided block"""
class AssetIdMismatch(Exception):

View File

@ -183,7 +183,7 @@ class Bigchain(object):
except (ValueError, exceptions.OperationError, exceptions.TransactionDoesNotExist,
exceptions.TransactionOwnerError, exceptions.DoubleSpend,
exceptions.InvalidHash, exceptions.InvalidSignature,
exceptions.FulfillmentNotInValidBlock):
exceptions.TransactionNotInValidBlock):
return False
def get_transaction(self, txid, include_status=False):

View File

@ -2,7 +2,7 @@ from bigchaindb.common.crypto import hash_data, VerifyingKey, SigningKey
from bigchaindb.common.exceptions import (InvalidHash, InvalidSignature,
OperationError, DoubleSpend,
TransactionDoesNotExist,
FulfillmentNotInValidBlock,
TransactionNotInValidBlock,
AssetIdMismatch)
from bigchaindb.common.transaction import Transaction, Asset
from bigchaindb.common.util import gen_timestamp, serialize
@ -54,6 +54,8 @@ class Transaction(Transaction):
OperationError: if the transaction operation is not supported
TransactionDoesNotExist: if the input of the transaction is not
found
TransactionNotInValidBlock: if the input of the transaction is not
in a valid block
TransactionOwnerError: if the new transaction is using an input it
doesn't own
DoubleSpend: if the transaction is a double spend
@ -90,7 +92,7 @@ class Transaction(Transaction):
.format(input_txid))
if status != bigchain.TX_VALID:
raise FulfillmentNotInValidBlock(
raise TransactionNotInValidBlock(
'input `{}` does not exist in a valid block'.format(
input_txid))

View File

@ -650,9 +650,9 @@ class TestTransactionValidation(object):
assert transfer_tx == b.validate_transaction(transfer_tx)
@pytest.mark.usefixtures('inputs')
def test_fulfillment_not_in_valid_block(self, b, user_vk, user_sk):
def test_transaction_not_in_valid_block(self, b, user_vk, user_sk):
from bigchaindb.models import Transaction
from bigchaindb.common.exceptions import FulfillmentNotInValidBlock
from bigchaindb.common.exceptions import TransactionNotInValidBlock
input_tx = b.get_owned_ids(user_vk).pop()
input_tx = b.get_transaction(input_tx.txid)
@ -673,7 +673,7 @@ class TestTransactionValidation(object):
transfer_tx.asset)
tx_invalid = tx_invalid.sign([user_sk])
with pytest.raises(FulfillmentNotInValidBlock):
with pytest.raises(TransactionNotInValidBlock):
b.validate_transaction(tx_invalid)