This article is compiled and released by WeChaT: kaifa873, which is only for reference of project development requirements! telegram @ sleu88
系统合约接口
4. 根据交易Id查询交易
参数说明:智能合约开发kaifa873
txId: 交易ID
GetTxByTxId(txId string) (*common.TransactionInfo, error)
5. 根据交易Id查询包含rwset的交易
参数说明
txId: 交易ID
GetTxWithRWSetByTxId(txId string) (*common.TransactionInfoWithRWSet, error)
6. 根据区块高度查询区块
参数说明
blockHeight: 指定区块高度,若为-1,将返回最新区块
withRWSet: 是否返回读写集
GetBlockByHeight(blockHeight uint64, withRWSet bool) (*common.BlockInfo, error)
7. 根据区块高度查询完整区块
参数说明
blockHeight: 指定区块高度,若为-1,将返回最新区块
GetFullBlockByHeight(blockHeight uint64) (*store.BlockWithRWSet, error)
8. 根据区块哈希查询区块
参数说明
blockHash: 指定区块Hash
withRWSet: 是否返回读写集
GetBlockByHash(blockHash string, withRWSet bool) (*common.BlockInfo, error)
9. 根据交易Id查询区块
参数说明
txId: 交易ID
withRWSet: 是否返回读写集
GetBlockByTxId(txId string, withRWSet bool) (*common.BlockInfo, error)
10. 查询最新的配置块
参数说明
withRWSet: 是否返回读写集
GetLastConfigBlock(withRWSet bool) (*common.BlockInfo, error)
11. 查询最新区块
参数说明
withRWSet: 是否返回读写集
GetLastBlock(withRWSet bool) (*common.BlockInfo, error)