This commit is contained in:
Simon Gardling
2022-05-11 18:48:55 -04:00
parent 8d4a315a96
commit 813c545e06
3 changed files with 14 additions and 17 deletions

View File

@@ -289,7 +289,6 @@ pub fn storage_create(commit: &[u8], data: &[u8]) -> String {
assert_eq!(commit.len(), 8);
let mut new_data = commit.to_vec();
// new_data.push(20); // push 'space'
let mut data = data.to_vec();
new_data.append(&mut data);
base64::encode(new_data)