Set gas price in Registry instantiation
This commit is contained in:
parent
ede9cd44b4
commit
5bde36228d
@ -14,7 +14,6 @@ import {
|
|||||||
} from './entity/Deployment';
|
} from './entity/Deployment';
|
||||||
import { AppDeploymentRecord, AppDeploymentRemovalRecord, AuctionData, PackageJSON } from './types';
|
import { AppDeploymentRecord, AppDeploymentRemovalRecord, AuctionData, PackageJSON } from './types';
|
||||||
import { getConfig, sleep } from './utils';
|
import { getConfig, sleep } from './utils';
|
||||||
import { ApplicationDeploymentAuction } from './entity/Project';
|
|
||||||
|
|
||||||
const log = debug('snowball:registry');
|
const log = debug('snowball:registry');
|
||||||
|
|
||||||
@ -33,9 +32,11 @@ export class Registry {
|
|||||||
|
|
||||||
constructor (registryConfig: RegistryConfig) {
|
constructor (registryConfig: RegistryConfig) {
|
||||||
this.registryConfig = registryConfig;
|
this.registryConfig = registryConfig;
|
||||||
|
// const gasPrice = Util.getGasPrice(registryConfig.fee.gasPrice);
|
||||||
this.registry = new LaconicRegistry(
|
this.registry = new LaconicRegistry(
|
||||||
registryConfig.gqlEndpoint,
|
registryConfig.gqlEndpoint,
|
||||||
registryConfig.restEndpoint,
|
registryConfig.restEndpoint,
|
||||||
|
// Pass gasPrice
|
||||||
{ chainId: registryConfig.chainId }
|
{ chainId: registryConfig.chainId }
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user