convertToBlockchainInfo function
Implementation
types.BlockchainInfo convertToBlockchainInfo(pb.BlockchainInfo pbInfo) {
return types.BlockchainInfo(
tipHash: pbInfo.tipHash.reversed.toHex(),
tipHeight: pbInfo.tipHeight,
);
}
types.BlockchainInfo convertToBlockchainInfo(pb.BlockchainInfo pbInfo) {
return types.BlockchainInfo(
tipHash: pbInfo.tipHash.reversed.toHex(),
tipHeight: pbInfo.tipHeight,
);
}