Skip to content

Commit ab14940

Browse files
authored
Merge pull request #2379 from CortexFoundation/dev
disable CPU metrics on tinyg
2 parents 2f0df2f + edbc596 commit ab14940

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

metrics/cpu_disabled.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
// You should have received a copy of the GNU Lesser General Public License
1515
// along with The go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
1616

17-
//go:build ios || js || wasip1
18-
// +build ios js wasip1
17+
//go:build ios || js || wasip1 || tinygo
18+
// +build ios js wasip1 tinygo
1919

2020
package metrics
2121

metrics/cpu_enabled.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
// You should have received a copy of the GNU Lesser General Public License
1515
// along with The go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
1616

17-
//go:build !ios && !js && !wasip1
18-
// +build !ios,!js,!wasip1
17+
//go:build !ios && !js && !wasip1 && !tinygo
18+
// +build !ios,!js,!wasip1,!tinygo
1919

2020
package metrics
2121

0 commit comments

Comments
 (0)