diff --git a/app/components/multisigwallet/owner-add.js b/app/components/multisigwallet/owner-add.js index c06617a..8dce4d4 100644 --- a/app/components/multisigwallet/owner-add.js +++ b/app/components/multisigwallet/owner-add.js @@ -46,7 +46,7 @@ class MSWAddOwner extends React.Component { const toSend = this.state.mswInstance.methods.addOwner(input.owner); const MsSend = this.state.mswInstance.submitTransaction( - this.state.mswInstance.address, 0, toSend.encodeABI + this.state.mswInstance._address, 0, toSend.encodeABI ) const estimatedGas = await MsSend.estimateGas({from: this.state.account}); diff --git a/app/components/multisigwallet/owner-table.js b/app/components/multisigwallet/owner-table.js index 1d6cca9..17e2ebd 100644 --- a/app/components/multisigwallet/owner-table.js +++ b/app/components/multisigwallet/owner-table.js @@ -31,7 +31,7 @@ class MSWOwnerTable extends React.Component { const toSend = this.state.mswInstance.methods.removeOwner(account); const MsSend = this.state.mswInstance.submitTransaction( - this.state.mswInstance.address, 0, toSend.encodeABI + this.state.mswInstance._address, 0, toSend.encodeABI ) const estimatedGas = await MsSend.estimateGas({from: this.state.account}); diff --git a/package.json b/package.json index bec1efb..7a6c5fa 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { - "name": "status-contracts", + "name": "status-multisig", "version": "0.0.1", - "description": "", + "description": "Simple multisig UI", "scripts": { "test": "embark test" },