From 15a2d5199250cd665dbf876a5c2acdbb3c77ce8f Mon Sep 17 00:00:00 2001 From: Ivan Socolsky Date: Tue, 14 Jun 2016 12:26:37 -0300 Subject: [PATCH] relax timeoff constraints --- lib/common/defaults.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/common/defaults.js b/lib/common/defaults.js index beb4b9f..ca3c5d6 100644 --- a/lib/common/defaults.js +++ b/lib/common/defaults.js @@ -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;