Skip to content

Commit

Permalink
chore: Update to support block mode deprecation (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
rpatel-figure authored Dec 1, 2023
1 parent 8cdc4da commit 922e06e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
kotlin = "1.8.22"
kotlin_coroutines = "1.6.4"
assetClassification = "3.7.0"
assetClassification = "3.8.1"
bouncyCastle = "1.70"
detekt = "1.18.1"
grpc = "1.51.3"
Expand All @@ -22,10 +22,10 @@ metadataAssetModel = "1.1.3"
mockk = "1.13.4"
nexus_publishing = "1.1.0"
objectStore_gateway = "3.3.0"
p8eScopeSdk = "0.6.4"
p8eScopeSdk = "0.7.0"
protobuf = "3.21.12"
protobuf_plugin = "0.8.16"
provenance_client = "1.3.0"
provenance_client = "2.4.3"
provenance_hdWallet = "0.1.15"
provenance_kmsConnector = "0.3.6"
provenance_proto = "1.13.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ class ProvenanceService : Provenance {
assetClassificationClient.onboardAsset(
onboardAssetRequest, signer,
options = BroadcastOptions(
broadcastMode = ServiceOuterClass.BroadcastMode.BROADCAST_MODE_BLOCK,
broadcastMode = config.broadcastMode,
sequenceOffset = offset,
baseAccount = account
)
Expand All @@ -140,7 +140,7 @@ class ProvenanceService : Provenance {
assetClassificationClient.verifyAsset(
verifyAssetRequest, signer,
options = BroadcastOptions(
broadcastMode = ServiceOuterClass.BroadcastMode.BROADCAST_MODE_BLOCK,
broadcastMode = config.broadcastMode,
sequenceOffset = offset,
baseAccount = account
)
Expand Down

0 comments on commit 922e06e

Please sign in to comment.