Skip to content

Commit 8f094c2

Browse files
authored
Merge branch 'master' into bugfix/pool-restart
2 parents c6d1422 + 5f88e37 commit 8f094c2

File tree

8 files changed

+1877
-58
lines changed

8 files changed

+1877
-58
lines changed

Jenkinsfile.cd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ def windowsPublishArtifact(testEnv, folder, packageName, packageType, packageVer
492492
unstash name: stashName
493493

494494
withCredentials([file(credentialsId: 'SovrinRepoSSHKey', variable: 'repo_key')]) {
495-
sh "ci/win-zip-and-upload.sh $folder $packageName $packageType $packageVersion '${repo_key}' master 1"
495+
sh "ci/win-zip-and-upload.sh $folder $packageName $packageType $packageVersion '${repo_key}' $env.BRANCH_NAME $env.BUILD_NUMBER"
496496
}
497497
}
498498
}

libindy/src/services/wallet/iterator.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,12 @@ impl WalletIterator {
3535

3636
let tags = decrypt_tags(&next_storage_entity.tags, &self.keys.tag_name_key, &self.keys.tag_value_key)?;
3737

38-
Ok(Some(WalletRecord::new(name, None, value, tags)))
38+
let type_ = match next_storage_entity.type_ {
39+
None => None,
40+
Some(encrypted_type) => Some(String::from_utf8(decrypt(&encrypted_type, &self.keys.type_key)?)?)
41+
};
42+
43+
Ok(Some(WalletRecord::new(name, type_, value, tags)))
3944
} else { Ok(None) }
4045
}
4146

0 commit comments

Comments
 (0)