This commit is contained in:
valere 2022-12-02 15:49:32 +01:00
parent b9045eb25f
commit 2ae4b87f2f
3 changed files with 4 additions and 4 deletions

View file

@ -21,7 +21,7 @@ jobs:
target: [ Gplay, Fdroid ]
# Allow all jobs on develop. Just one per PR.
concurrency:
group: ${{ github.ref == 'refs/heads/develop' && format('integration-tests-develop-{0}-{1}', matrix.target, github.sha) || format('build-debug-{0}-{1}', matrix.target, github.ref) }}
group: ${{ github.ref == 'refs/heads/develop' && format('elementr-{0}-{1}', matrix.target, github.sha) || format('build-debug-{0}-{1}', matrix.target, github.ref) }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v3

View file

@ -36,7 +36,7 @@ jobs:
sed 's/CHANGES\.md/CHANGES_NIGHTLY\.md/' towncrier.toml.bak > towncrier.toml
rm towncrier.toml.bak
yes n | towncrier build --version nightly
- name: Build and upload Gplay Nightly APK
- name: Build and upload Gplay Nightly ER APK
run: |
./gradlew assembleGplayRustCryptoNightly appDistributionUploadGplayRustCryptoNightly $CI_GRADLE_ARG_PROPERTIES
env:

View file

@ -290,7 +290,7 @@ class SelfVerificationController @Inject constructor(
}
is Success -> {
// Success => There is an active transaction
renderTransaction(state, transaction = transaction.invoke())
renderTransaction(transaction = transaction.invoke())
}
is Fail -> {
// todo
@ -300,7 +300,7 @@ class SelfVerificationController @Inject constructor(
}
}
private fun renderTransaction(state: SelfVerificationViewState, transaction: VerificationTransactionData) {
private fun renderTransaction(transaction: VerificationTransactionData) {
when (transaction) {
is VerificationTransactionData.QrTransactionData -> {
renderQrTransaction(transaction, null)