diff options
author | Dan Finlay <dan@danfinlay.com> | 2016-10-18 04:05:45 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-10-18 04:05:45 +0800 |
commit | 827d7553fc843a75b7a4306c7549505f799609d7 (patch) | |
tree | 1c14d688553014175c7fb4fe8c5e0f88048f0db5 /test | |
parent | 91f43fa2130e84a32ebecf902696a0b897cdd095 (diff) | |
download | tangerine-wallet-browser-827d7553fc843a75b7a4306c7549505f799609d7.tar tangerine-wallet-browser-827d7553fc843a75b7a4306c7549505f799609d7.tar.gz tangerine-wallet-browser-827d7553fc843a75b7a4306c7549505f799609d7.tar.bz2 tangerine-wallet-browser-827d7553fc843a75b7a4306c7549505f799609d7.tar.lz tangerine-wallet-browser-827d7553fc843a75b7a4306c7549505f799609d7.tar.xz tangerine-wallet-browser-827d7553fc843a75b7a4306c7549505f799609d7.tar.zst tangerine-wallet-browser-827d7553fc843a75b7a4306c7549505f799609d7.zip |
Restore hex prefix to gas price
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/idStore-test.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/unit/idStore-test.js b/test/unit/idStore-test.js index 7f6324645..0a57d2121 100644 --- a/test/unit/idStore-test.js +++ b/test/unit/idStore-test.js @@ -154,5 +154,6 @@ describe('IdentityStore', function() { const bnResult = new BN(result, 16) assert.ok(bnResult.gt(gas), 'added more gas as buffer.') + assert.equal(result.indexOf('0x'), 0, 'include hex prefix') }) }) |