Skip to content

Commit a20dd63

Browse files
committed
fix: linting
1 parent 0669dd4 commit a20dd63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

framework/rpc/rpc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ func (m *RPCClient) EVMIncreaseTime(seconds uint64) error {
5858
"jsonrpc": "2.0",
5959
"method": "evm_increaseTime",
6060
"params": []interface{}{seconds},
61-
"id": rand.Int(),
61+
"id": rand.Int(), //nolint:gosec
6262
}
6363
if _, err := m.client.R().SetBody(payload).Post(m.URL); err != nil {
6464
return errors.Wrap(err, "evm_increaseTime")

0 commit comments

Comments
 (0)