Skip to content

  • Projects
  • Groups
  • Snippets
  • Help
    • Loading...
    • Help
    • Support
    • Submit feedback
    • Contribute to GitLab
  • Sign in
N
nebula
  • Project
    • Project
    • Details
    • Activity
    • Releases
    • Cycle Analytics
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
    • Charts
  • Issues 0
    • Issues 0
    • List
    • Boards
    • Labels
    • Milestones
  • Merge Requests 0
    • Merge Requests 0
  • CI / CD
    • CI / CD
    • Pipelines
    • Jobs
    • Schedules
    • Charts
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Members
    • Members
  • Collapse sidebar
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • exchain
  • nebula
  • Repository

Switch branch/tag
  • nebula
  • packages
  • contracts-bedrock
  • scripts
  • go-ffi
  • bin.go
Find file
BlameHistoryPermalink
  • clabby's avatar
    feat(ctb): `PreimageOracle` LPP Diff Testing (#9147) · 06d66f12
    clabby authored 1 year ago
    * feat(ctb): merkle tree diff testing
    
    * Fix `go-ffi` merkle diff tester ++ add more tests
    
    * fix(op-challenger): merkle tree signed integer conversion
    
    ---------
    Co-authored-by: default avatarrefcell <abigger87@gmail.com>
    06d66f12
bin.go 217 Bytes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
package main

import (
	"log"
	"os"
)

func main() {
	switch os.Args[1] {
	case "diff":
		DiffTestUtils()
	case "trie":
		FuzzTrie()
	case "merkle":
		DiffMerkle()
	default:
		log.Fatal("Must pass a subcommand")
	}
}

Replace bin.go

Attach a file by drag & drop or click to upload


Cancel
A new branch will be created in your fork and a new merge request will be started.