Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/elvin-du/htz_sutra


https://github.com/elvin-du/htz_sutra

Last synced: 25 days ago
JSON representation

Awesome Lists containing this project

README

        

# 开发

# sync(数据同步器)

## 数据库数据的更新机制

启动定时任务来定期计算区块链中的最新Block高度和数据库中最新Block的高度差。如果高度差大约等一,就从数据库最新高度的Block开始同步数据,
同时同步的数据包括:Block,Tx,Msg,Validator四种数据。
而定时任务多久检查一次高度差可以根据配置文件中的`interval_time`字段来配置。

## Known Issues

* validator数据区块链是不会全部保存的。也就是说,如果过了一段时间以后,就无法从区块链获取以前的validator数据,暂时的时长是100个区块。

# rest (REST 服务器)

只能查询,不能更新。

## HTTP框架

采用的是gin开源框架。