forked from Qortal/qortal
Merge pull request #74 from catbref/presence-txns-removal
PRESENCE transactions changed to always fail signature validation
This commit is contained in:
commit
6a8a113fa1
@ -209,6 +209,9 @@ public class PresenceTransaction extends Transaction {
|
||||
|
||||
@Override
|
||||
public boolean isSignatureValid() {
|
||||
return false;
|
||||
|
||||
/*
|
||||
byte[] signature = this.transactionData.getSignature();
|
||||
if (signature == null)
|
||||
return false;
|
||||
@ -231,6 +234,7 @@ public class PresenceTransaction extends Transaction {
|
||||
|
||||
// Check nonce
|
||||
return MemoryPoW.verify2(transactionBytes, POW_BUFFER_SIZE, POW_DIFFICULTY, nonce);
|
||||
*/
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user