Skip to content
This repository has been archived by the owner on Sep 2, 2023. It is now read-only.

Commit

Permalink
[FIX] Variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewPhinney committed Oct 20, 2015
1 parent 52ea0e7 commit 2c55e4f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -161,4 +161,4 @@ globals:
RippleAddressCodec: false
sjcl: false
store: false
RippleBinaryCode: false
RippleBinaryCodec: false
2 changes: 1 addition & 1 deletion src/js/entry/vendor.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ window.Spinner = require('spin');
window.RippleAPI = require('ripple-lib').RippleAPI;
window.ripple = require('ripple-lib')._DEPRECATED;
window.RippleAddressCodec = require('ripple-address-codec');
window.RippleBinaryCode = require('ripple-binary-codec');
window.RippleBinaryCodec = require('ripple-binary-codec');
window._ = require('lodash');
window.sjcl = require('sjcl');
require('../../../deps/sjcl-custom');
Expand Down
2 changes: 1 addition & 1 deletion src/js/tabs/submit.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ SubmitTab.prototype.angular = function (module)
// Parse account from tx blob and display to user
var account;
try {
account = RippleBinaryCode.decode(txBlob).Account;
account = RippleBinaryCodec.decode(txBlob).Account;
} catch(e) {
account = '';
console.log('Unable to convert tx blob to JSON: ', e);
Expand Down

0 comments on commit 2c55e4f

Please sign in to comment.