Skip to content

Commit 026b161

Browse files
authored
Merge pull request #17 from onflow/tx-status
TX status - "final" instead of "sealed"
2 parents bf1f054 + fcad157 commit 026b161

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ allprojects {
2222
}
2323

2424
group = "org.onflow.flow"
25-
val defaultVersion = "0.0.3"
25+
val defaultVersion = "0.0.4"
2626
version = System.getenv("GITHUB_REF")?.split('/')?.last() ?: defaultVersion
2727
}
2828

flow/src/commonMain/kotlin/org/onflow/flow/apis/ScriptsApi.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class ScriptsApi(val baseUrl: String) : ApiBase() {
6060
} else if (blockHeight != null) {
6161
request(request, blockHeight = blockHeight)
6262
} else {
63-
request(request, blockHeight = "sealed")
63+
request(request, blockHeight = "final")
6464
}
6565

6666
println(response)

0 commit comments

Comments
 (0)