上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 109 下一页
摘要: 一、基础设施管理 (一)常用工具及命令 1.证书工具 (1)查看当前证书属于哪个用户 openssl x509 -in config/msp/signcerts/cert.pem -noout -subject (2)打印证书的过期时间 openssl x509 -in signed.crt -no 阅读全文
posted @ 2021-09-24 15:55 jiftle 阅读(371) 评论(0) 推荐(0) 编辑
摘要: 1. Error: error getting endorser client for channel: endorser client failed to connect to orderer.rabbit.com:8051: failed to create new connection: co 阅读全文
posted @ 2021-09-24 11:50 jiftle 阅读(876) 评论(0) 推荐(0) 编辑
摘要: 待解决问题: peer channel getinfo -c 得到的哈希值 是什么编码,和sdk方式取到的不一样,怎么转换 解决办法: (解决了就给填个赞或留言。。。。哈) package utils import ( "encoding/base64" "encoding/hex" ) func 阅读全文
posted @ 2021-09-23 10:57 jiftle 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 各主流的编程语言都有其特有的 UI 库,Go 语言也不甘落后。如果你不习惯用 Dart 或 JAVAscript 来开发跨平台的 GUI 应用,不妨来看看 Fyne,这个背靠强大易用的Go语言的UI工具库,兼具性能和开发效率,在桌面和移动端都能构建用户友好的应用。 Go语言UI库 简介 Fyne 是 阅读全文
posted @ 2021-09-20 22:39 jiftle 阅读(7840) 评论(3) 推荐(0) 编辑
摘要: Go语言开发GUI程序 简介 推荐跨平台的flyne来编写go语言的GUI程序,无任何依赖 赖得翻译了,直接贴文了。 About Fyne is an easy-to-use UI toolkit and app API written in Go. It is designed to build 阅读全文
posted @ 2021-09-20 22:37 jiftle 阅读(3683) 评论(0) 推荐(0) 编辑
摘要: 参考goframe框架,重要的以下几个信号量. // Copyright GoFrame Author(https://goframe.org). All Rights Reserved. // // This Source Code Form is subject to the terms of 阅读全文
posted @ 2021-09-19 14:00 jiftle 阅读(328) 评论(0) 推荐(0) 编辑
摘要: sudo kill -9 $(pidof 进程名关键字) 阅读全文
posted @ 2021-09-18 11:37 jiftle 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 查看交换文件的大小 free -m 修改交换文件的小,建议和物理内存一样 sudo fallocate -l 16.0G /swapfile ##关闭交换文件 sudo swapoff /swapfile ##启用交换文件 sudo swapon /swapfile 参考文章 ubuntu20.04 阅读全文
posted @ 2021-09-18 09:31 jiftle 阅读(1101) 评论(0) 推荐(0) 编辑
摘要: 根据TxID获取上链信息 https://www.cnblogs.com/lianshuiwuyi/p/14109406.html 前段时间应甲方爸爸的要求,需要在现有的业务系统中新增一个根据TxID来查询上链信息的接口。搜了一圈发现相关的信息很少,最后只能祭出终极大招:Read Source Co 阅读全文
posted @ 2021-09-16 23:17 jiftle 阅读(190) 评论(0) 推荐(0) 编辑
摘要: Fabric 2.2底层结构设计分析 目录 一、Block类型分析 Block定义 Block类型关系图 二、交易结构定义分析 交易类型分类 交易类型说明 交易类型关系图 三、链码相关 1. 支持的链码开发语言类型 2. 链码交易定义 3. 链码的安装过程 Fabric的底层定义项目:hyperle 阅读全文
posted @ 2021-09-16 22:48 jiftle 阅读(224) 评论(0) 推荐(0) 编辑
上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 109 下一页