| | |
| | | package cc.mrbird.febs.dapp.contract; |
| | | |
| | | import cc.mrbird.febs.common.service.RedisService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | |
| | | @Autowired |
| | | private ContractMain contractMain; |
| | | |
| | | @Autowired |
| | | private RedisService redisService; |
| | | |
| | | |
| | | @PostConstruct |
| | | public void init(){ |
| | | // 设置起始区块编号 TODO |
| | | BigInteger start = new BigInteger("1000"); |
| | | BigInteger start = new BigInteger("25410154"); |
| | | 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); |
| | | contractMain.listenBetting(start); |
| | | } |