Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo on newDao #1670

Merged
merged 2 commits into from
May 13, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions packages/toolkit/src/dao/new.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ import { getRecommendedGasLimit } from '../util'
/**
* Create a new DAO
*
* @param {Object} parmas Parameters
* @param {Object} repo Template repository
* @param {Object} web3 web3
* @param {Object} templateInstance Template instance
* @param {string} newInstanceMethod New instance method name
* @param {string[]} newInstanceArgs New instance arguments
* @param {string} gasPrice Gas price
* @param {Object} params Parameters
* @param {Object} params.repo Template repository
* @param {Object} params.web3 web3
* @param {Object} params.templateInstance Template instance
* @param {string} params.newInstanceMethod New instance method name
* @param {string[]} params.newInstanceArgs New instance arguments
* @param {string} params.gasPrice Gas price
*/
export default async function ({
repo,
Expand Down