mirror of
git://holbrook.no/eth-monitor.git
synced 2024-12-04 08:26:47 +01:00
Correct tx index in default log sync cli output
This commit is contained in:
parent
c6b3ef6707
commit
5598740173
@ -1,3 +1,5 @@
|
|||||||
|
- 0.7.2
|
||||||
|
* Fix tx index in default output for sync command
|
||||||
- 0.7.1
|
- 0.7.1
|
||||||
* Change license to AGPL3 and copyright waived to public domain
|
* Change license to AGPL3 and copyright waived to public domain
|
||||||
* Add missing log module in cli lib
|
* Add missing log module in cli lib
|
||||||
|
@ -74,7 +74,7 @@ class OutFilter(RuledFilter):
|
|||||||
datetime.datetime.fromtimestamp(block.timestamp),
|
datetime.datetime.fromtimestamp(block.timestamp),
|
||||||
block.number,
|
block.number,
|
||||||
strip_0x(block.hash),
|
strip_0x(block.hash),
|
||||||
tx.index,
|
tx.index + 1,
|
||||||
tx_count,
|
tx_count,
|
||||||
strip_0x(tx.hash),
|
strip_0x(tx.hash),
|
||||||
tx.status.name,
|
tx.status.name,
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
[metadata]
|
[metadata]
|
||||||
name = eth-monitor
|
name = eth-monitor
|
||||||
version = 0.7.1
|
version = 0.7.2
|
||||||
description = Monitor and cache transactions using match filters
|
description = Monitor and cache transactions using match filters
|
||||||
author = Louis Holbrook
|
author = Louis Holbrook
|
||||||
author_email = dev@holbrook.no
|
author_email = dev@holbrook.no
|
||||||
url = https://git.defalsify.org/eth-monitor.git
|
url = https://git.defalsify.org/eth-monitor
|
||||||
keywords =
|
keywords =
|
||||||
dlt
|
dlt
|
||||||
blockchain
|
blockchain
|
||||||
@ -20,7 +20,7 @@ classifiers =
|
|||||||
License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
|
License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
|
||||||
Topic :: Internet
|
Topic :: Internet
|
||||||
# Topic :: Blockchain :: EVM
|
# Topic :: Blockchain :: EVM
|
||||||
license = OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
|
license = AGPLv3+
|
||||||
licence_files =
|
licence_files =
|
||||||
LICENSE
|
LICENSE
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user