Skip to content

Commit 1f705d5

Browse files
authored
Fix spelling error (#718)
1 parent f4698e4 commit 1f705d5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

contracts/tasks/overflow_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,8 @@ task("upgradeRollup")
170170

171171
const upgradeTx = await RollupProxyWithSigner.upgradeTo(rollupNewImpl.address)
172172
console.log("upgradeTx hash: ", upgradeTx.hash)
173-
const recipt = await upgradeTx.wait()
174-
console.log("recipt status: ", recipt.status)
173+
const receipt = await upgradeTx.wait()
174+
console.log("receipt status: ", receipt.status)
175175

176176
console.log("after upgrade the impl contract is :", await RollupProxy.callStatic.implementation({
177177
from: ethers.constants.AddressZero,

oracle/oracle/oracle.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ func Main() func(ctx *cli.Context) error {
6363
log.Info("metrics server enabled", "host", cfg.MetricsHostname, "port", cfg.MetricsPort)
6464
}
6565
<-(chan struct{})(nil)
66-
log.Info("staking oracle stoped")
66+
log.Info("staking oracle stopped")
6767
return nil
6868
}
6969
}

oracle/oracle/reward.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ func (o *Oracle) setStartBlock() {
310310
if errors.Is(err, ErrRewardNotStart) {
311311
log.Info(err.Error())
312312
} else {
313-
log.Error("query reward start falied", "error", err)
313+
log.Error("query reward start failed", "error", err)
314314
}
315315
time.Sleep(defaultSleepTime)
316316
continue

0 commit comments

Comments
 (0)