reduce deletion backoff time from 24h to 1h

This commit is contained in:
Ivan Socolsky 2016-03-15 15:58:46 -03:00
parent a3da2deb65
commit 4892e23100
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ Defaults.MAX_TX_SIZE_IN_KB = 100;
Defaults.MAX_KEYS = 100;
// Time after which a Tx proposal can be erased by any copayer. in seconds
Defaults.DELETE_LOCKTIME = 24 * 3600;
Defaults.DELETE_LOCKTIME = 1 * 3600;
// Allowed consecutive txp rejections before backoff is applied.
Defaults.BACKOFF_OFFSET = 3;