Skip to content

Commit ab06551

Browse files
authored
Merge pull request #8157 from onflow/jribibnk/transient-fix
Add MonotonicEmulator to transient chains
2 parents 8b69d4c + a0753ca commit ab06551

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

model/flow/chain.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ func AllChainIDs() ChainIDList {
5959

6060
// Transient returns whether the chain ID is for a transient network.
6161
func (c ChainID) Transient() bool {
62-
return c == Emulator || c == Localnet || c == Benchnet || c == BftTestnet || c == Previewnet
62+
return c == Emulator || c == MonotonicEmulator || c == Localnet || c == Benchnet || c == BftTestnet || c == Previewnet
6363
}
6464

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

0 commit comments

Comments
 (0)