diff --git a/src/RpcClient/Utility.cs b/src/RpcClient/Utility.cs index 659942f8f..eba6f0e7c 100644 --- a/src/RpcClient/Utility.cs +++ b/src/RpcClient/Utility.cs @@ -206,6 +206,10 @@ public static TransactionAttribute TransactionAttributeFromJson(JObject json) { Hash = UInt256.Parse(json["hash"].AsString()) }, + TransactionAttributeType.NotaryAssisted => new NotaryAssisted() + { + NKeys = (byte)json["nkeys"].AsNumber() + }, _ => throw new FormatException(), }; }