Skip to content

Commit 4685790

Browse files
committed
Fix variable name stargate -> logging
1 parent 3477179 commit 4685790

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

packages/faucet/src/faucet.spec.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ describe("Faucet", () => {
2828
const pathBuilder = makeCosmoshubPath;
2929

3030
const apiUrl = "http://localhost:26658";
31-
const stargate = true;
31+
const logging = true;
3232
let originalEnvVariable: string | undefined;
3333

3434
beforeAll(() => {
@@ -51,7 +51,7 @@ describe("Faucet", () => {
5151
faucetMnemonic,
5252
pathBuilder,
5353
3,
54-
stargate,
54+
logging,
5555
);
5656
expect(faucet).toBeTruthy();
5757
});
@@ -67,7 +67,7 @@ describe("Faucet", () => {
6767
faucetMnemonic,
6868
pathBuilder,
6969
3,
70-
stargate,
70+
logging,
7171
);
7272
const tickers = await faucet.availableTokens();
7373
expect(tickers).toEqual([]);
@@ -82,7 +82,7 @@ describe("Faucet", () => {
8282
faucetMnemonic,
8383
pathBuilder,
8484
3,
85-
stargate,
85+
logging,
8686
);
8787
const tickers = await faucet.availableTokens();
8888
expect(tickers).toEqual(["ucosm", "ustake"]);
@@ -99,7 +99,7 @@ describe("Faucet", () => {
9999
faucetMnemonic,
100100
pathBuilder,
101101
3,
102-
stargate,
102+
logging,
103103
);
104104
const recipient = makeRandomAddress();
105105
await faucet.send({
@@ -133,7 +133,7 @@ describe("Faucet", () => {
133133
faucetMnemonic,
134134
pathBuilder,
135135
3,
136-
stargate,
136+
logging,
137137
);
138138
await faucet.refill();
139139
const readOnlyClient = await StargateClient.connect(apiUrl);
@@ -162,7 +162,7 @@ describe("Faucet", () => {
162162
faucetMnemonic,
163163
pathBuilder,
164164
3,
165-
stargate,
165+
logging,
166166
);
167167
const recipient = makeRandomAddress();
168168
await faucet.credit(recipient, "ucosm");
@@ -187,7 +187,7 @@ describe("Faucet", () => {
187187
faucetMnemonic,
188188
pathBuilder,
189189
3,
190-
stargate,
190+
logging,
191191
);
192192
const recipient = makeRandomAddress();
193193
await faucet.credit(recipient, "ustake");
@@ -214,7 +214,7 @@ describe("Faucet", () => {
214214
faucetMnemonic,
215215
pathBuilder,
216216
3,
217-
stargate,
217+
logging,
218218
);
219219
const tickers = faucet.configuredTokens();
220220
expect(tickers).toEqual(["ucosm", "ustake"]);
@@ -231,7 +231,7 @@ describe("Faucet", () => {
231231
faucetMnemonic,
232232
pathBuilder,
233233
1,
234-
stargate,
234+
logging,
235235
);
236236
const accounts = await faucet.loadAccounts();
237237

0 commit comments

Comments
 (0)