From 3b78023a411ecdf037dd103a6086482681a54a0c Mon Sep 17 00:00:00 2001 From: CJentzsch Date: Wed, 27 Apr 2016 15:00:39 +0200 Subject: [PATCH] allow multisig for non value transfer --- wallet/wallet.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wallet/wallet.sol b/wallet/wallet.sol index 99e0b49..78b90c7 100644 --- a/wallet/wallet.sol +++ b/wallet/wallet.sol @@ -262,7 +262,7 @@ contract daylimit is multiowned { m_lastDay = today(); } // check to see if there's enough left - if so, subtract and return true. - if (m_spentToday + _value >= m_spentToday && m_spentToday + _value <= m_dailyLimit) { + if (m_spentToday + _value >= m_spentToday && m_spentToday + _value < m_dailyLimit) { m_spentToday += _value; return true; }