mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-19 21:31:37 +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()
|
||||
}
|
||||
|
||||
for true {
|
||||
for {
|
||||
// 10%
|
||||
interestRate := 10 * common.BaseLendingInterest.Uint64()
|
||||
// lendToken: USD, collateral: BTC
|
||||
|
|
|
|||
Loading…
Reference in a new issue