Fix latestBlocks's column names

This commit is contained in:
Vivek Teega 2019-08-31 09:38:48 +05:30
parent 389e754c78
commit 3677e2c36f

View File

@ -123,7 +123,7 @@ class LatestTransactions(LatestCacheBase):
class LatestBlocks(LatestCacheBase):
__tablename__ = "latestBlocks"
id = Column('id', Integer, primary_key=True)
blockNo = Column('blockNo', String)
blockNumber = Column('blockNumber', String)
blockHash = Column('blockHash', String)
jsonData = Column('jsonData', String)