Skip to content

Commit

Permalink
Merge pull request #462 from onflow/chasefleming/remove-sandboxnet
Browse files Browse the repository at this point in the history
Remove sandboxnet
  • Loading branch information
chasefleming authored Sep 8, 2023
2 parents a78fb46 + 6099efa commit 07814fe
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
5 changes: 0 additions & 5 deletions address.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,6 @@ func chainCustomizer(chain ChainID) uint64 {
return 0
case Testnet:
return invalidCodeTestNetwork
case Sandboxnet:
return invalidCodeSandboxNetwork
case Emulator, Localnet, Benchnet, BftTestnet:
return invalidCodeTransientNetwork
default:
Expand Down Expand Up @@ -268,9 +266,6 @@ const (

// invalidCodeTransientNetwork is the invalid codeword used for transient test networks.
invalidCodeTransientNetwork = uint64(0x1cb159857af02018)

// invalidCodeSandboxNetwork is the invalid codeword used for Sandbox network.
invalidCodeSandboxNetwork = uint64(0x1035ce4eff92ae01)
)

// Rows of the generator matrix G of the [64,45]-code used for Flow addresses.
Expand Down
3 changes: 0 additions & 3 deletions flow.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,6 @@ const (
// Testnet is the chain ID for the testnet chain.
Testnet ChainID = "flow-testnet"

// Sandboxnet is the chain ID for sandboxnet chain.
Sandboxnet ChainID = "flow-sandboxnet"

// Transient test networks

// Benchnet is the chain ID for the transient benchmarking chain.
Expand Down

0 comments on commit 07814fe

Please sign in to comment.