mirror of
https://github.com/oceanprotocol/ocean.js.git
synced 2024-11-26 20:39:05 +01:00
fix lint
This commit is contained in:
parent
220261cada
commit
6121da3fff
@ -40,7 +40,14 @@ export class TestContractHandler {
|
|||||||
estGas = await this.template
|
estGas = await this.template
|
||||||
.deploy({
|
.deploy({
|
||||||
data: this.templateBytecode,
|
data: this.templateBytecode,
|
||||||
arguments: ['Template Contract', 'TEMPLATE', minter, cap, blob, communityCollector]
|
arguments: [
|
||||||
|
'Template Contract',
|
||||||
|
'TEMPLATE',
|
||||||
|
minter,
|
||||||
|
cap,
|
||||||
|
blob,
|
||||||
|
communityCollector
|
||||||
|
]
|
||||||
})
|
})
|
||||||
.estimateGas(function (err, estGas) {
|
.estimateGas(function (err, estGas) {
|
||||||
if (err) console.log('DeployContracts: ' + err)
|
if (err) console.log('DeployContracts: ' + err)
|
||||||
@ -50,7 +57,14 @@ export class TestContractHandler {
|
|||||||
this.templateAddress = await this.template
|
this.templateAddress = await this.template
|
||||||
.deploy({
|
.deploy({
|
||||||
data: this.templateBytecode,
|
data: this.templateBytecode,
|
||||||
arguments: ['Template Contract', 'TEMPLATE', minter, cap, blob, communityCollector]
|
arguments: [
|
||||||
|
'Template Contract',
|
||||||
|
'TEMPLATE',
|
||||||
|
minter,
|
||||||
|
cap,
|
||||||
|
blob,
|
||||||
|
communityCollector
|
||||||
|
]
|
||||||
})
|
})
|
||||||
.send({
|
.send({
|
||||||
from: minter,
|
from: minter,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user