一、RPC
RPC(Remote Procedure Call,远程过程调用)是客户端与区块链系统交互的一套协议和接口。用户通过RPC接口可查询区块链相关信息(如块高、区块、节点连接等)和发送交易。
介绍文档
远程过程调用(RPC) — FISCO BCOS v2.9.0 文档https://fisco-bcos-documentation.readthedocs.io/zh_CN/latest/docs/design/rpc.html区块链功能接口列表 — FISCO BCOS v2.9.0 文档
https://fisco-bcos-documentation.readthedocs.io/zh_CN/latest/docs/api.html
// 测试用
Json::Value getTestInfo(int p1, int p2, int p3) override;
2. Rpc.cpp
/**
* @brief 测试
*
* @return Json::Value
*/
Json::Value Rpc::getTestInfo(int p1, int p2, int p3)
{
try
{
RPC_LOG(INFO)
关注
打赏
热门博文
- DevOps实践教程 华为云 系列教程2021 合集
- ❤️Python Django网站开发 2021年最新版教程 合集❤️
- ❤️java多线程并发编程入门 教程合集❤️
- ❤️区块链Hyperledger Fabric 老版本 1.1.0 快速部署安装 教程合集❤️
- ❤️Docker教程小白实操入门 教程合集❤️
- ❤️微信小程序 云开发 教程合集(视频+图文)免费❤️
- C++ boost::asio::io_service创建线程池thread_group简单实例
- C++ error: ‘shared_ptr’ was not declared in this scope
- git 代码回滚回退到指定版本 并 提交
- C++ 得到map中最后一个元素