We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b235d97 commit 3b301c8Copy full SHA for 3b301c8
vesting-backend/src/main.rs
@@ -206,7 +206,7 @@ pub async fn submit_signature(
206
207
if !exists_data_in_file(path_to_drop_file, droped_item.address.clone()){
208
dropped_data.push(droped_item.clone());
209
- let json_data = serde_json::to_string(&droped_item).expect("Unable to serialize");
+ let json_data = serde_json::to_string(&dropped_data).expect("Unable to serialize");
210
std::fs::write(path_to_drop_file, json_data).expect("Unable to write file");
211
}
212
0 commit comments