Updated on 2026-08-14
This commit is contained in:
parent
8fc105db06
commit
b2d6bb0af5
1 changed files with 4 additions and 1 deletions
|
|
@ -11,7 +11,10 @@ class BlockchainTests {
|
|||
fun allNetworkIdsAreImplemented() {
|
||||
val unimplementedIds = Blockchain.values()
|
||||
.toMutableList()
|
||||
.apply { remove(Blockchain.Unknown) }
|
||||
.apply {
|
||||
remove(Blockchain.Unknown)
|
||||
remove(Blockchain.Optimism)
|
||||
}
|
||||
.map { it to Blockchain.fromNetworkId(it.toNetworkId()) }
|
||||
.mapNotNull { if(it.second == null) it.first else null }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue