Details
Details
- Reviewers
freetrader CCulianu - Group Reviewers
Restricted Project - Commits
- rSTAGING2f67fe3e1c25: Kill ModifyCoin
rABC2f67fe3e1c25: Kill ModifyCoin
Updated tests
make check ../qa/pull-tester/rpc-tests.py
Diff Detail
Diff Detail
- Repository
- rABC Bitcoin ABC
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
Comment Actions
Added some comments.
src/validation.cpp | ||
---|---|---|
1521 ↗ | (On Diff #1175) | Is this entirely safe? Can't compiler optimizer get confused/screwed up by this? Why not just modify method signature to not be const then? I strongly suggest you do that and avoid doing this. This just feels.. *wrong*. |
src/validation.cpp | ||
---|---|---|
1521 ↗ | (On Diff #1175) | I got to agree this feels wrong, hence the comment. This is essentially due to the way the TXO/undo has been stored historically. The problem is that the coin passed in may have missing infos it should have had. This code will become obsolete once we get ABC to use its own folder, so I assumed this would be good enough. |