Fix latestBlocks's column names
This commit is contained in:
parent
389e754c78
commit
3677e2c36f
@ -123,7 +123,7 @@ class LatestTransactions(LatestCacheBase):
|
|||||||
class LatestBlocks(LatestCacheBase):
|
class LatestBlocks(LatestCacheBase):
|
||||||
__tablename__ = "latestBlocks"
|
__tablename__ = "latestBlocks"
|
||||||
id = Column('id', Integer, primary_key=True)
|
id = Column('id', Integer, primary_key=True)
|
||||||
blockNo = Column('blockNo', String)
|
blockNumber = Column('blockNumber', String)
|
||||||
blockHash = Column('blockHash', String)
|
blockHash = Column('blockHash', String)
|
||||||
jsonData = Column('jsonData', String)
|
jsonData = Column('jsonData', String)
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user