package cc.mrbird.febs.dapp.contract.andao;
|
|
import cc.mrbird.febs.common.service.RedisService;
|
import cc.mrbird.febs.dapp.mapper.DataDictionaryCustomMapper;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
|
import org.springframework.stereotype.Component;
|
|
import javax.annotation.PostConstruct;
|
import java.math.BigInteger;
|
|
|
@Component
|
@ConditionalOnProperty(prefix = "system", name = "quartz-job", havingValue = "true")
|
public class AndaoContractInit {
|
|
@Autowired
|
private AndaoContractMain andaoContractMain;
|
|
@Autowired
|
private DataDictionaryCustomMapper dataDictionaryCustomMapper;
|
|
@Autowired
|
private RedisService redisService;
|
|
|
@PostConstruct
|
public void init(){
|
// 设置起始区块编号 TODO
|
BigInteger start = new BigInteger("29837079");
|
// 需要打开 获取最新区块编号
|
Object bnb_block_number = redisService.get("BNB_BLOCK_NUMBER");
|
if(bnb_block_number !=null){
|
start = BigInteger.valueOf(Long.valueOf(bnb_block_number.toString()));
|
}
|
System.out.println("启动区块事件监听,监听起始:"+start);
|
andaoContractMain.listenBetting(start);
|
}
|
}
|