Commit 37de38be authored by d11e9's avatar d11e9

bugfix: incorrect sender. fixes #48

parent 6ba98130
......@@ -382,6 +382,7 @@ UniversalDApp.prototype.clickContractAt = function ( self, $output, contract ) {
}
UniversalDApp.prototype.runTx = function( data, args, cb) {
var self = this;
var to = args.address;
var constant = args.abi.constant;
var isConstructor = args.bytecode !== undefined;
......
......@@ -700,7 +700,7 @@
var dapp = new UniversalDApp(udappContracts, {
vm: executionContext === 'vm',
removable: false,
getAddress: function(){ return $('txorigin').val(); },
getAddress: function(){ return $('#txorigin').val(); },
removable_instances: true,
renderOutputModifier: function(contractName, $contractOutput) {
var contract = data.contracts[contractName];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment