Merge pull request #49 from redsquirrel/kill-dead-functions

Removing an unused method in UniversalDApp
pull/1/head
chriseth 9 years ago
commit a7e3d9d7a9
  1. 4
      src/universal-dapp.js

@ -535,10 +535,6 @@ UniversalDApp.prototype.deployLibrary = function(contractName, cb) {
} }
}; };
UniversalDApp.prototype.clickNewContract = function ( self, $contract, contract ) {
$contract.append( self.getInstanceInterface(contract) );
};
UniversalDApp.prototype.clickContractAt = function ( self, $output, contract ) { UniversalDApp.prototype.clickContractAt = function ( self, $output, contract ) {
var address = prompt( "What Address is this contract at in the Blockchain? ie: '0xdeadbeaf...'" ); var address = prompt( "What Address is this contract at in the Blockchain? ie: '0xdeadbeaf...'" );
self.getInstanceInterface(contract, address, $output ); self.getInstanceInterface(contract, address, $output );

Loading…
Cancel
Save