We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1835d84 commit e03b110Copy full SHA for e03b110
crypto/block/transaction.cpp
@@ -3295,6 +3295,9 @@ bool Transaction::compute_state(const SerializeConfig& cfg) {
3295
acc_status = Account::acc_nonexist;
3296
was_created = false;
3297
}
3298
+ if (acc_status == Account::acc_deleted && !balance.is_zero()) {
3299
+ acc_status = Account::acc_uninit;
3300
+ }
3301
if (acc_status == Account::acc_nonexist || acc_status == Account::acc_deleted) {
3302
CHECK(balance.is_zero());
3303
vm::CellBuilder cb;
0 commit comments