Fix a typo in the signature module

Thanks fdb-hiroshima for noticing it
This commit is contained in:
Bat 2018-06-27 21:45:36 +02:00
parent 1a2cf3b14f
commit cb0b8297fa
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ impl Signable for serde_json::Value {
let signature = base64::encode(&creator.sign(to_be_signed));
options["signaureValue"] = serde_json::Value::String(signature);
options["signatureValue"] = serde_json::Value::String(signature);
self["signature"] = options;
self
}