We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0669dd4 commit a20dd63Copy full SHA for a20dd63
framework/rpc/rpc.go
@@ -58,7 +58,7 @@ func (m *RPCClient) EVMIncreaseTime(seconds uint64) error {
58
"jsonrpc": "2.0",
59
"method": "evm_increaseTime",
60
"params": []interface{}{seconds},
61
- "id": rand.Int(),
+ "id": rand.Int(), //nolint:gosec
62
}
63
if _, err := m.client.R().SetBody(payload).Post(m.URL); err != nil {
64
return errors.Wrap(err, "evm_increaseTime")
0 commit comments