Conflux v1.1.3-testnet
Pre-release
Pre-release
peilun-conflux
released this
13 Apr 08:50
·
304 commits
to v1.0-testnet
since this release
Improvements
RPC Improvements
- Include
blockHash
,epochHash
,epochNumber
,transactionHash
, andtransactionPosition
for trace RPCs.
Note that the data format returned bytrace_block
is incompatible with old versions. - Add new field
offset
in log filters used incfx_getLogs
.
If specified, the response will skip the lastoffset
logs.
For instance, with 10 matching logs (0..9
) andoffset=0x1, limit=0x5
, the response will contain logs4..8
.
Note: Even if you specifyoffset
, the corresponding logs still need to be processed by the node,
so a filter withoffset=10000, limit=10
has about the same performance as a filter withoffset=0, limit=100010
. - Add a new parameter
subscription_epoch
to theepochs
pubsub.
The supported values are"latest_mined"
(default) and"latest_state"
. - Add
cfx_getAccountPendingInfo
to get pending transaction info for some account for better investigating pending tx problems.
Configuration Improvements
- Allow immediately packing sent transactions in
dev
mode by keepingdev_block_interval_ms
unset.
Note that settingdev_block_interval_ms
will disable this immediate packing and generate blocks only periodically.
Performance Improvements
- Optimize the state implementation for better cache performance.
Bug fix
- Fix a bug that makes running nodes in
dev
mode not generate blocks automatically.