-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #66 from novasamatech/develop
v1.9.1
- Loading branch information
Showing
5 changed files
with
119 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
buildscript { | ||
ext { | ||
// App version | ||
versionName = '1.9.0' | ||
versionName = '1.9.1' | ||
versionCode = 1 | ||
|
||
// SDK and tools | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
...ils/src/main/java/jp/co/soramitsu/fearless_utils/runtime/extrinsic/ExtrinsicBuilderExt.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package jp.co.soramitsu.fearless_utils.runtime.extrinsic | ||
|
||
import jp.co.soramitsu.fearless_utils.runtime.metadata.SignedExtensionId | ||
import jp.co.soramitsu.fearless_utils.runtime.metadata.SignedExtensionValue | ||
|
||
fun ExtrinsicBuilder.signedExtra(id: SignedExtensionId, value: Any?) { | ||
signedExtension(id, SignedExtensionValue(signedExtra = value)) | ||
} | ||
|
||
fun ExtrinsicBuilder.additionalSigned(id: SignedExtensionId, value: Any?) { | ||
signedExtension(id, SignedExtensionValue(additionalSigned = value)) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters