mirror of
git://holbrook.no/eth-monitor.git
synced 2024-12-03 16:16:45 +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
|
||||
* Change license to AGPL3 and copyright waived to public domain
|
||||
* Add missing log module in cli lib
|
||||
|
@ -74,7 +74,7 @@ class OutFilter(RuledFilter):
|
||||
datetime.datetime.fromtimestamp(block.timestamp),
|
||||
block.number,
|
||||
strip_0x(block.hash),
|
||||
tx.index,
|
||||
tx.index + 1,
|
||||
tx_count,
|
||||
strip_0x(tx.hash),
|
||||
tx.status.name,
|
||||
|
@ -1,10 +1,10 @@
|
||||
[metadata]
|
||||
name = eth-monitor
|
||||
version = 0.7.1
|
||||
version = 0.7.2
|
||||
description = Monitor and cache transactions using match filters
|
||||
author = Louis Holbrook
|
||||
author_email = dev@holbrook.no
|
||||
url = https://git.defalsify.org/eth-monitor.git
|
||||
url = https://git.defalsify.org/eth-monitor
|
||||
keywords =
|
||||
dlt
|
||||
blockchain
|
||||
@ -20,7 +20,7 @@ classifiers =
|
||||
License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
|
||||
Topic :: Internet
|
||||
# Topic :: Blockchain :: EVM
|
||||
license = OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
|
||||
license = AGPLv3+
|
||||
licence_files =
|
||||
LICENSE
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user