Skip to content
This repository has been archived by the owner on Aug 24, 2021. It is now read-only.

Commit

Permalink
Merge pull request #245 from gnosis/develop
Browse files Browse the repository at this point in the history
Hotfix
  • Loading branch information
denisgranha authored Apr 2, 2019
2 parents 3ce2f1a + 4c677da commit 15f7428
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion dapp/src/services/Web3Service.js
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,12 @@
},
controller: function ($scope, $uibModalInstance, Wallet, options) {
$scope.send = function () {
$uibModalInstance.close({ gas: $scope.gasLimit, gasPrice: $scope.gasPrice * 1e9 });
$uibModalInstance.close(
{
gas: $scope.gasLimit,
gasPrice: Math.ceil($scope.gasPrice * 1e9)
}
);
};

$scope.cancel = function () {
Expand Down

0 comments on commit 15f7428

Please sign in to comment.