change variable type

This commit is contained in:
Felix
2024-06-05 16:57:25 +00:00
parent d079def2a2
commit 968ee927f5

View File

@ -3,7 +3,7 @@ use serde::{Deserialize, Serialize};
#[derive(Debug, Deserialize)]
pub struct OfferCreationResponse {
pub locking_address: String,
pub locking_amount: u32, // validate
pub locking_amount: u64, // validate
}
#[derive(Serialize)]