mirror of
https://github.com/Qortal/qortal.git
synced 2025-05-02 07:47:51 +00:00
Ignore per-name limits when using storagePolicy ALL.
This commit is contained in:
parent
ba4866a2e6
commit
dc1289787d
@ -488,6 +488,11 @@ public class ArbitraryDataStorageManager extends Thread {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (Settings.getInstance().getStoragePolicy() == StoragePolicy.ALL) {
|
||||||
|
// Using storage policy ALL, so don't limit anything per name
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
if (name == null) {
|
if (name == null) {
|
||||||
// This transaction doesn't have a name, so fall back to total space limitations
|
// This transaction doesn't have a name, so fall back to total space limitations
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user