mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-18 02:40:45 +00:00
crypto/bn256: fix import line (#20723)
This commit is contained in:
parent
6033722b72
commit
b2be754647
1 changed files with 2 additions and 1 deletions
|
|
@ -14,12 +14,13 @@
|
||||||
// You should have received a copy of the GNU Lesser General Public License
|
// You should have received a copy of the GNU Lesser General Public License
|
||||||
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
//go:build !amd64 && !arm64
|
||||||
// +build !amd64,!arm64
|
// +build !amd64,!arm64
|
||||||
|
|
||||||
// Package bn256 implements the Optimal Ate pairing over a 256-bit Barreto-Naehrig curve.
|
// Package bn256 implements the Optimal Ate pairing over a 256-bit Barreto-Naehrig curve.
|
||||||
package bn256
|
package bn256
|
||||||
|
|
||||||
import "github.com/XinFinOrg/XDPoSChain/crypto/bn256/google"
|
import bn256 "github.com/XinFinOrg/XDPoSChain/crypto/bn256/google"
|
||||||
|
|
||||||
// G1 is an abstract cyclic group. The zero value is suitable for use as the
|
// G1 is an abstract cyclic group. The zero value is suitable for use as the
|
||||||
// output of an operation, but cannot be used as an input.
|
// output of an operation, but cannot be used as an input.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue