mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-15 09:20:44 +00:00
core: fix staticcheck warning S1006: use for {} for infinite loops
This commit is contained in:
parent
56a15b5844
commit
b7154dd450
1 changed files with 1 additions and 1 deletions
|
|
@ -181,7 +181,7 @@ func TestSendLending(t *testing.T) {
|
||||||
t.FailNow()
|
t.FailNow()
|
||||||
}
|
}
|
||||||
|
|
||||||
for true {
|
for {
|
||||||
// 10%
|
// 10%
|
||||||
interestRate := 10 * common.BaseLendingInterest.Uint64()
|
interestRate := 10 * common.BaseLendingInterest.Uint64()
|
||||||
// lendToken: USD, collateral: BTC
|
// lendToken: USD, collateral: BTC
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue