From a8fe8651fce51c3c3bc2c2c9b710180c31d0cdb8 Mon Sep 17 00:00:00 2001 From: xbis Date: Fri, 30 Nov 2018 12:49:21 +0200 Subject: [PATCH] fix for signer weight --- js/mywallet.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/mywallet.js b/js/mywallet.js index a807667..caad3be 100644 --- a/js/mywallet.js +++ b/js/mywallet.js @@ -493,7 +493,7 @@ walletApp.controller('walletCtrl', ['$scope', '$http', '$uibModal', '$localStora return { SignerEntry: { Account: signer.address, - SignerWeight: signer.weight + SignerWeight: parseInt(signer.weight) } } }