Skip to content

Commit

Permalink
Fix multisig payload.
Browse files Browse the repository at this point in the history
  • Loading branch information
yknl committed Jul 31, 2018
1 parent 2e186ba commit dc24a45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/containers/MultiSigWalletPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ class MultiSigWalletPage extends Component<Props> {
makeMultiSig = () => {
if(this.verifyPublicKeys()) {
this.props.makeMultiSig(this.state.publicKeys, this.state.signaturesRequired)
.then(({address, payload}) => this.props.generateMultiSigPayload(address, payload))
.then(({payload}) => this.props.generateMultiSigPayload(this.state.name, payload))
.then(() => this.changeView(VIEWS.COMPLETE))
.catch((error) => {
this.setState({
Expand Down

0 comments on commit dc24a45

Please sign in to comment.