Skip to content

Commit

Permalink
Merge pull request #5448 from onflow/janez/previewnet-is-transient
Browse files Browse the repository at this point in the history
Mark previewnet as transient
  • Loading branch information
janezpodhostnik authored Feb 27, 2024
2 parents b9c9109 + 05837b2 commit bf3cec4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model/flow/chain.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func AllChainIDs() ChainIDList {

// Transient returns whether the chain ID is for a transient network.
func (c ChainID) Transient() bool {
return c == Emulator || c == Localnet || c == Benchnet || c == BftTestnet
return c == Emulator || c == Localnet || c == Benchnet || c == BftTestnet || c == Previewnet
}

// getChainCodeWord derives the network type used for address generation from the globally
Expand Down

0 comments on commit bf3cec4

Please sign in to comment.