github.com/turingchain2020/turingchain@v1.1.21/wallet/common/mine_status_report.go (about) 1 // Copyright Turing Corp. 2018 All Rights Reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 package common 6 7 // MineStatusReport 挖矿操作状态 8 type MineStatusReport interface { 9 IsAutoMining() bool 10 // 返回挖矿买票锁的状态 11 IsTicketLocked() bool 12 PolicyName() string 13 }