Add files via upload

This commit is contained in:
QuickMythril 2021-09-05 18:06:32 -04:00 committed by GitHub
parent 6b74ef77e6
commit 25b787f6f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,21 @@
package org.qortal.block;
import org.qortal.naming.Name;
import org.qortal.repository.DataException;
public final class Block536140 {
private Block536140() {
/* Do not instantiate */
}
public static void processFix(Block block) throws DataException {
// Unregister the existing name record if it exists
// This ensures that the duplicate name is considered valid, and therefore
// the second (i.e. duplicate) REGISTER_NAME transaction data is applied.
// Both were issued by the same user account, so there is no conflict.
Name name = new Name(block.repository, "Qweb");
name.unregister();
}
}