Skip to content

Commit

Permalink
Revert rlp/unsafe.go as wasm supports pointers
Browse files Browse the repository at this point in the history
  • Loading branch information
nolag committed Jan 29, 2025
1 parent cedb26a commit 77ffcc0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions rlp/safe.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
// 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/>.

//go:build nacl || js || wasip1 || !cgo
// +build nacl js wasip1 !cgo
//go:build nacl || js || !cgo
// +build nacl js !cgo

package rlp

Expand Down
4 changes: 2 additions & 2 deletions rlp/unsafe.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
// 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/>.

//go:build !nacl && !js && !wasip1 && cgo
// +build !nacl,!js,!wasip1,cgo
//go:build !nacl && !js && cgo
// +build !nacl,!js,cgo

package rlp

Expand Down

0 comments on commit 77ffcc0

Please sign in to comment.