最近我的eth 执行erc20 token授权转账 提交广播后,变成一直处于pending状态。查看交易hash。页面提示 This txn hash was found in our secondary node and should be picked up by our indexer in a short while。
以下是我在 ***goerli*** 测试网的交易截图。
...
...uint256 amount ) internal override {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
require(to != from, "ERC20: transfer to the same address");
if(address(rewardToken) == from){
upda...