Skip to content

Commit

Permalink
removed logs
Browse files Browse the repository at this point in the history
  • Loading branch information
KatunaNorbert committed Mar 8, 2022
1 parent a62666d commit cee1bc2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
7 changes: 0 additions & 7 deletions src/factories/NFTFactory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -769,13 +769,8 @@ export class NftFactory {
let estGas

const ercCreateData = getErcCreationParams(ercParams)

console.log(freParams)

const fixedData = await getFreCreationParams(freParams)

console.log(fixedData)

try {
estGas = await this.factory721.methods
.createNftWithErc20WithFixedRate(nftCreateData, ercCreateData, fixedData)
Expand Down Expand Up @@ -805,8 +800,6 @@ export class NftFactory {
const ercCreateData = getErcCreationParams(ercParams)
const fixedData = getFreCreationParams(freParams)

console.log(fixedData)

const estGas = await this.estGasCreateNftErc20WithFixedRate(
address,
nftCreateData,
Expand Down
3 changes: 0 additions & 3 deletions src/pools/fixedRate/FixedRateExchange.ts
Original file line number Diff line number Diff line change
Expand Up @@ -529,10 +529,7 @@ export class FixedRateExchange {
*/
public async getRate(exchangeId: string): Promise<string> {
const weiRate = await this.contract.methods.getRate(exchangeId).call()
console.log(weiRate)
console.log((await this.getExchange(exchangeId)).baseToken)
const rate = await this.web3.utils.fromWei(weiRate)
console.log(rate)
return rate
}

Expand Down

0 comments on commit cee1bc2

Please sign in to comment.