mirror of
https://github.com/planetmint/planetmint.git
synced 2025-03-30 15:08:31 +00:00
updated changelog and version bump
Signed-off-by: Lorenz Herzberger <lorenzherzberger@gmail.com>
This commit is contained in:
parent
8d8ea9de57
commit
953276d6f9
@ -25,6 +25,11 @@ For reference, the possible headings are:
|
||||
* **Known Issues**
|
||||
* **Notes**
|
||||
|
||||
## [2.4.1] - 2023-11-04
|
||||
* **Removed** Fastquery class
|
||||
* **Changed** UTXO space updated to resemble outputs
|
||||
* **Changed** updated UTXO querying
|
||||
|
||||
## [2.4.0] - 2023-29-03
|
||||
* **Added** Zenroom script validation
|
||||
* **Changed** adjusted zenroom testing for new transaction script structure
|
||||
|
@ -76,7 +76,7 @@ class DataAccessor:
|
||||
not specified (``None``) return all outputs.
|
||||
|
||||
Returns:
|
||||
:obj:`list` of TransactionLink: list of ``txid`` s and ``output`` s
|
||||
:obj:`list` of Output: list of ``txid`` s and ``output`` s
|
||||
pointing to another transaction's condition
|
||||
"""
|
||||
outputs = backend.query.get_outputs_by_owner(self.connection, owner)
|
||||
|
@ -1,6 +1,6 @@
|
||||
[tool.poetry]
|
||||
name = "planetmint"
|
||||
version = "2.4.0"
|
||||
version = "2.4.1"
|
||||
description = "Planetmint: The Blockchain Database"
|
||||
authors = ["Planetmint contributors"]
|
||||
license = "AGPLv3"
|
||||
|
@ -10,8 +10,7 @@ from ipld import marshal, multihash
|
||||
from operator import attrgetter
|
||||
|
||||
from transactions.common import crypto
|
||||
from transactions.common.transaction import TransactionLink
|
||||
from transactions.common.transaction import Transaction
|
||||
from transactions.common.transaction import Transaction, TransactionLink, Input
|
||||
from transactions.types.assets.create import Create
|
||||
from transactions.types.assets.transfer import Transfer
|
||||
from planetmint.exceptions import CriticalDoubleSpend
|
||||
@ -65,7 +64,6 @@ class TestBigchainApi(object):
|
||||
def test_non_create_input_not_found(self, b, user_pk):
|
||||
from planetmint_cryptoconditions import Ed25519Sha256
|
||||
from transactions.common.exceptions import InputDoesNotExist
|
||||
from transactions.common.transaction import Input, TransactionLink
|
||||
|
||||
# Create an input for a non existing transaction
|
||||
input = Input(
|
||||
|
@ -23,10 +23,6 @@ from transactions.common.transaction_mode_types import (
|
||||
BROADCAST_TX_ASYNC,
|
||||
BROADCAST_TX_SYNC,
|
||||
)
|
||||
from transactions.common.transaction import (
|
||||
Input,
|
||||
TransactionLink,
|
||||
)
|
||||
from transactions.common.utils import _fulfillment_from_details
|
||||
from transactions.common.crypto import generate_key_pair
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user