1. 31 Mar, 2023 2 commits
  2. 30 Mar, 2023 7 commits
  3. 28 Mar, 2023 6 commits
  4. 27 Mar, 2023 3 commits
  5. 25 Mar, 2023 1 commit
  6. 24 Mar, 2023 2 commits
  7. 23 Mar, 2023 6 commits
    • aaronbuchwald's avatar
      eth/gasprice: change feehistory input type from int to uint64 (#26922) · b1acaf47
      aaronbuchwald authored
      Change input param type from int to uint64
      b1acaf47
    • Martin Holst Swende's avatar
      metrics/influxdb: use smaller dependency and reuse code between v1 and v2 reporters (#26963) · f6c3a534
      Martin Holst Swende authored
      This change switches to use the smaller influxdata/influxdb1-client package instead of depending on the whole infuxdb package. The new smaller client is very similar to the influxdb-v2 client, which made it possible to refactor the two reporters to reuse code a lot more. 
      f6c3a534
    • turboboost55's avatar
      metrics: add cpu counters (#26796) · 7dc10071
      turboboost55 authored
      This PR adds counter metrics for the CPU system and the Geth process.
      Currently the only metrics available for these items are gauges. Gauges are
      fine when the consumer scrapes metrics data at the same interval as Geth
      produces new values (every 3 seconds), but it is likely that most consumers
      will not scrape that often. Intervals of 10, 15, or maybe even 30 seconds
      are probably more common.
      
      So the problem is, how does the consumer estimate what the CPU was doing in
      between scrapes. With a counter, it's easy ... you just subtract two
      successive values and divide by the time to get a nice, accurate average.
      But with a gauge, you can't do that. A gauge reading is an instantaneous
      picture of what was happening at that moment, but it gives you no idea
      about what was going on between scrapes. Taking an average of values is
      meaningless.
      7dc10071
    • Guillaume Ballet's avatar
      core/state: add account address to Trie slot accessors (#26934) · 8990c92a
      Guillaume Ballet authored
      This changes the Trie interface to add the plain account address as a
      parameter to all storage-related methods.
      
      After the introduction of the TryAccount* functions, TryGet, TryUpdate and
      TryDelete are now only meant to read an account's storage. In their current
      form, they assume that an account storage is stored in a separate trie, and
      that the hashing of the slot is independent of its account's address.
      
      The proposed structure for a stateless storage breaks these two
      assumptions: the hashing of a slot key requires the address and all slots
      and accounts are stored in a single trie.
      
      This PR therefore adds an address parameter to the interface. It is ignored
      in the MPT version, so this change has no functional impact, however it
      will reduce the diff size when merging verkle trees.
      8990c92a
    • lightclient's avatar
      cmd/evm, tests: record preimages if dump is expected (#26955) · 37ecff09
      lightclient authored
      With #25287 we made it so that preimages were not recorded by default. This had the side effect that the evm command is no longer able to dump state since it does a preimage lookup to determine the address represented by a key.
      
      This change enables the recording of preimages when the dump command is given. 
      37ecff09
    • Delweng's avatar
      core/rawdb: update freezertable read meter (#26946) · 7f3fc15a
      Delweng authored
      The meter for "for measuring the effective amount of data read" within the freezertable was never updated. This change remedies that. 
      ---------
      Signed-off-by: 's avatarjsvisa <delweng@gmail.com>
      7f3fc15a
  8. 22 Mar, 2023 1 commit
  9. 21 Mar, 2023 6 commits
  10. 20 Mar, 2023 4 commits
  11. 17 Mar, 2023 2 commits