From 6149e55710fdd3cc606197b7300ecd50f00e56a8 Mon Sep 17 00:00:00 2001 From: Evan Duffield Date: Thu, 5 Feb 2015 17:49:55 -0700 Subject: [PATCH] extend txlock expiration --- src/instantx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/instantx.cpp b/src/instantx.cpp index d4e105897..4d5e538eb 100644 --- a/src/instantx.cpp +++ b/src/instantx.cpp @@ -232,7 +232,7 @@ int64_t CreateNewLock(CTransaction tx) CTransactionLock newLock; newLock.nBlockHeight = nBlockHeight; - newLock.nExpiration = GetTime()+(60*15); //locks expire after 15 minutes (6 confirmations) + newLock.nExpiration = GetTime()+(60*60); //locks expire after 15 minutes (6 confirmations) newLock.nTimeout = GetTime()+(60*5); newLock.txHash = tx.GetHash(); mapTxLocks.insert(make_pair(tx.GetHash(), newLock));