mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 01:11:35 +00:00
channel_db: fix timestamp_range, reduce verbosity
This commit is contained in:
parent
aa398993cf
commit
93e8d4f953
2 changed files with 11 additions and 7 deletions
|
@ -218,12 +218,11 @@ class Peer(PrintError):
|
|||
self.print_error('requesting whole channel graph')
|
||||
else:
|
||||
self.print_error('requesting channel graph since', datetime.fromtimestamp(timestamp).ctime())
|
||||
timestamp_range = int(time.time()) - timestamp
|
||||
self.send_message(
|
||||
'gossip_timestamp_filter',
|
||||
chain_hash=constants.net.rev_genesis_bytes(),
|
||||
first_timestamp=timestamp,
|
||||
timestamp_range=timestamp_range)
|
||||
timestamp_range=b'\xff'*4)
|
||||
while True:
|
||||
await asyncio.sleep(5)
|
||||
if self.node_anns:
|
||||
|
|
|
@ -305,7 +305,7 @@ class ChannelDB(SqlDB):
|
|||
self.DBSession.commit()
|
||||
|
||||
@sql
|
||||
@profiler
|
||||
#@profiler
|
||||
def on_channel_announcement(self, msg_payloads, trusted=False):
|
||||
if type(msg_payloads) is dict:
|
||||
msg_payloads = [msg_payloads]
|
||||
|
@ -335,12 +335,15 @@ class ChannelDB(SqlDB):
|
|||
|
||||
@sql
|
||||
def get_last_timestamp(self):
|
||||
return self._get_last_timestamp()
|
||||
|
||||
def _get_last_timestamp(self):
|
||||
from sqlalchemy.sql import func
|
||||
r = self.DBSession.query(func.max(Policy.timestamp).label('max_timestamp')).one()
|
||||
return r.max_timestamp or 0
|
||||
|
||||
@sql
|
||||
@profiler
|
||||
#@profiler
|
||||
def on_channel_update(self, msg_payloads, trusted=False):
|
||||
if type(msg_payloads) is dict:
|
||||
msg_payloads = [msg_payloads]
|
||||
|
@ -372,16 +375,18 @@ class ChannelDB(SqlDB):
|
|||
if p and p.timestamp >= new_policy.timestamp:
|
||||
continue
|
||||
new_policies[(short_channel_id, node_id)] = new_policy
|
||||
self.print_error('on_channel_update: %d/%d'%(len(new_policies), len(msg_payloads)))
|
||||
#self.print_error('on_channel_update: %d/%d'%(len(new_policies), len(msg_payloads)))
|
||||
# commit pending removals
|
||||
self.DBSession.commit()
|
||||
# add and commit new policies
|
||||
for new_policy in new_policies.values():
|
||||
self.DBSession.add(new_policy)
|
||||
self.DBSession.commit()
|
||||
if new_policies:
|
||||
self.print_error('last timestamp:', datetime.fromtimestamp(self._get_last_timestamp()).ctime())
|
||||
|
||||
@sql
|
||||
@profiler
|
||||
#@profiler
|
||||
def on_node_announcement(self, msg_payloads):
|
||||
if type(msg_payloads) is dict:
|
||||
msg_payloads = [msg_payloads]
|
||||
|
@ -414,7 +419,7 @@ class ChannelDB(SqlDB):
|
|||
new_nodes[node_id] = node_info
|
||||
for addr in node_addresses:
|
||||
new_addresses[(addr.node_id,addr.host,addr.port)] = addr
|
||||
self.print_error("on_node_announcement: %d/%d"%(len(new_nodes), len(msg_payloads)))
|
||||
#self.print_error("on_node_announcement: %d/%d"%(len(new_nodes), len(msg_payloads)))
|
||||
for node_info in new_nodes.values():
|
||||
self.DBSession.add(node_info)
|
||||
for new_addr in new_addresses.values():
|
||||
|
|
Loading…
Add table
Reference in a new issue