feat(core): implement transaction signature verification and reject duplicates#544
feat(core): implement transaction signature verification and reject duplicates#544MicaiahReid merged 2 commits intomainfrom
Conversation
I wanted the same thing, but tbh I couldn't find our reasoning... I was worried about the issue arising again if I enabled it blindly. I did some digging again and I have a possible reason: the LiteSVM fn simulate_transaction(&self, sigverify: bool) ... {
if !sigverify {
self.sigverify(false);
}
/// simulate
// reset it for future tx processing
if !sigverify {
self.sigverify(true);
}which would also force Don't know if that's a strong enough reason to have this extra code to maintain, though. |
946e8ec to
177b90b
Compare
No description provided.