mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-19 21:31:37 +00:00
Merge pull request #723 from gzliudan/fix-s1006
core: fix staticcheck warning S1006: use for {} for infinite loops
This commit is contained in:
commit
003af00b25
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