User @Swaldman今天大获成功,并在ENS拍卖代码中发现了一个bug:
https://github.com/ethereum/ens/issues/49
在部署前修复/防止此攻击向量的各种方法是什么?
发布于 2017-05-20 10:41:48
修复程序在https://github.com/ethereum/ens/pull/51/files中,正如@Richard : change _value to actualValue的评论所描述的那样
例如:
} else if (_value > h.value) {应:
} else if (actualValue > h.value) {https://ethereum.stackexchange.com/questions/13084
复制相似问题