Junqin Huang
Junqin Huang
I run the stress test case provided in [压力测试](https://fisco-bcos-doc.readthedocs.io/zh_CN/latest/docs/develop/stress_testing.html). But the checking result indicates the balance of each account is not equal as expected. Does it mean the requested transactions...
Thank you for contributing to this excellent project. I think there should be a key like `href` in papers/publications section to add href attribute to paper title. For example, ```json...
https://fisco-bcos-doc.readthedocs.io/zh_CN/latest/docs/develop/precompiled/add_precompiled_impl.html#step4 文档写的是 > 开发者需要修改bcos-executor/src/executor/TransactionExecutor.cpp文件,在initPrecompiled函数中的m_constantPrecompiled Map中插入合约地址和合约对象实例 但是该文件没有这个函数,是否应该修改为`EvmTransactionExecutor.cpp`和`WasmTransactionExecutor.cpp`文件呢?
The `ZOKRATES_HOME` should be `ZOKRATES_STDLIB` now.
楼主是不是只对高德地图做了hook,我想问的是就是你怎么知道高德地图是通过`com.amap.api.location.AMapLocation`这个类以及类下面的方法获取的经纬度呢?如何知道这个具体的类名以及方法名,希望能请教一下~ 比如我需要hook百度地图或者腾讯地图应该怎么去找这个类名和方法名呢,我之前看了网上的好多hook gps的例子([比如这个](https://www.jianshu.com/p/796e94d8af31)),就是对很多locationmanager类进行hook,但是我实测都不起作用,是不是高德的应用做了什么特殊处理? 刚学习xposed小白,希望可以得到您的回答,谢谢! ```java /** * 修改高德地图的经纬度值 * @param * @throws ClassNotFoundException */ public static void findMethodAmapLongitudeAndLatitude(ClassLoader classLoader) { try { Class aMapLocationClazz = classLoader.loadClass("com.amap.api.location.AMapLocation"); XposedHelpers.findAndHookMethod(aMapLocationClazz, "getLongitude", new Object[]{new...
作者你好,可以有偿阅读一下你的源码吗? 想学习一下hook gps的方法,想扩展一个能hook trace的功能,主页上没有你的邮箱,所以如果可以的话可以联系我的邮箱 [email protected]
无法自动在`contracts/.compiled/group0`文件夹下生成对应的abi和bin文件(这个可以在v2.8中实现),因此会报错`abi is empty...`的错误,暂时修复方式可以通过deploy命令获得bin和abi文件,然后手动在`group0`文件夹下创建预编译合约的地址目录,例如预编译合约地址为`0000000000000000000000000000000000005001`,则需要在console文件夹下创建的目录结构为 ``` contracts/.compiled/group0/0x0000000000000000000000000000000000005001/ ``` 在这个目录下放进bin和abi文件即可成功调用预编译合约。 另一个问题是无法通过`0x5001`这样简短的地址调用,必须要写全,但是这个特性在v2.8是支持的,希望在v3.0中也可以支持
使用的console版本是2.8,fisco-bcos的版本也是2.8,自己编写了一个预编译合约,编译通过,然后在控制台调用报错`cannot decode in in decodeMethodToObject with appropriate interface ABI`,复现步骤如下: ```bash [group:1]> call InferencePrecompiled.sol 0x5002 inference "test" "test" cannot decode in decodeMethodToObject with appropriate interface ABI ``` 预编译合约接口如下: ```javascript pragma solidity...
### Please share the technical limitation of Caliper that you encountered. Is there a way to set the latency unit to milliseconds instead of seconds in report.html? Sometimes, the latency...