diff options
author | Dan <danjm.com@gmail.com> | 2018-07-12 00:07:26 +0800 |
---|---|---|
committer | Dan <danjm.com@gmail.com> | 2018-07-12 00:07:26 +0800 |
commit | e91d87efd91bce3d893a20832a2d2361cbd256ee (patch) | |
tree | 7284275b038398614fb4c4e6e673a9a913f8856e /development/backGroundConnectionModifiers.js | |
parent | 91eca558f0f82e096251bebdc34136c864e224fe (diff) | |
download | tangerine-wallet-browser-e91d87efd91bce3d893a20832a2d2361cbd256ee.tar.gz tangerine-wallet-browser-e91d87efd91bce3d893a20832a2d2361cbd256ee.tar.zst tangerine-wallet-browser-e91d87efd91bce3d893a20832a2d2361cbd256ee.zip |
Fix bug in test mock signature request methods.
Diffstat (limited to 'development/backGroundConnectionModifiers.js')
-rw-r--r-- | development/backGroundConnectionModifiers.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/development/backGroundConnectionModifiers.js b/development/backGroundConnectionModifiers.js index 665f72898..aee68854b 100644 --- a/development/backGroundConnectionModifiers.js +++ b/development/backGroundConnectionModifiers.js @@ -10,7 +10,7 @@ module.exports = { signPersonalMessage: (msgData, cb) => { const stateUpdate = { unapprovedPersonalMsgs: {}, - unapprovedPersonalMsgsCount: 0, + unapprovedPersonalMsgCount: 0, } return cb(null, stateUpdate) }, |