relax timeoff constraints

This commit is contained in:
Ivan Socolsky 2016-06-14 12:26:37 -03:00
parent 6190348200
commit 15a2d51992
No known key found for this signature in database
GPG Key ID: FAECE6A05FAA4F56
1 changed files with 4 additions and 4 deletions

View File

@ -10,14 +10,14 @@ 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 = 1 * 3600;
// Time after which a tx proposal can be erased by any copayer. in seconds
Defaults.DELETE_LOCKTIME = 600;
// Allowed consecutive txp rejections before backoff is applied.
Defaults.BACKOFF_OFFSET = 10;
// Time a copayer need to wait to create a new TX after her tx previous proposal we rejected. in seconds.
Defaults.BACKOFF_TIME = 1 * 3600;
// Time a copayer need to wait to create a new tx after her previous proposal was rejected. in seconds.
Defaults.BACKOFF_TIME = 600;
Defaults.MAX_MAIN_ADDRESS_GAP = 20;