Skip to content

Commit 44352e8

Browse files
committed
fix: metagraph transaction would return None
1 parent a5e1c18 commit 44352e8

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

pypergraph/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.2.6"
1+
__version__ = "0.2.7"

pypergraph/account/tests/test_account.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,6 @@
66
from pypergraph.account import DagAccount, MetagraphTokenClient
77
from pypergraph.network.models.transaction import PendingTransaction
88

9-
from pypergraph.network.tests.conftest import (
10-
mock_l1_api_responses,
11-
mock_block_explorer_responses,
12-
)
13-
149

1510
@pytest.mark.account
1611
class TestAccount:
@@ -181,7 +176,11 @@ async def test_get_currency_transactions(
181176

182177
@pytest.mark.asyncio
183178
async def test_currency_transfer(
184-
self, dag_account, metagraph_account, httpx_mock: HTTPXMock, mock_l1_api_responses
179+
self,
180+
dag_account,
181+
metagraph_account,
182+
httpx_mock: HTTPXMock,
183+
mock_l1_api_responses,
185184
):
186185
from secret import to_address
187186

0 commit comments

Comments
 (0)