mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 15:37:56 -05:00
* engine GetPayload returns entire response * deprecate PayloadValueTo(Gwei|Wei) * return entire bid from builder getter * get bid value from api bid (not ExecutionData) * plumb bid and bundle through BuildBlockParallel * rm ValueInGwei * removing wei/gwei fields from the payload wrappers * commentary around the little-endian situation * finish the job in BuildBlockParallel * light self-review cleanup * fix spectest mock * restore engine timeout * lint fixes * de-duplicate imports * remove errant comment * James feedback --------- Co-authored-by: Kasey Kirkham <kasey@users.noreply.github.com>
20 lines
511 B
Python
20 lines
511 B
Python
load("@prysm//tools/go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["math_helper.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/v5/math",
|
|
visibility = ["//visibility:public"],
|
|
deps = ["@com_github_thomaso_mirodin_intmath//u64:go_default_library"],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
size = "small",
|
|
srcs = ["math_helper_test.go"],
|
|
deps = [
|
|
":go_default_library",
|
|
"//testing/require:go_default_library",
|
|
],
|
|
)
|