Skip to content

Commit

Permalink
Update RpcServer.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
erikzhang committed Sep 26, 2019
1 parent b8c6249 commit 5453cc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neo/Network/RPC/RpcServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ private JObject GetRawTransaction(UInt256 hash, bool verbose)
json["blockhash"] = header.Hash.ToString();
json["confirmations"] = Blockchain.Singleton.Height - header.Index + 1;
json["blocktime"] = header.Timestamp;
json["vmState"] = txState.VMState.ToString();
json["vmState"] = txState.VMState;
}
return json;
}
Expand Down

0 comments on commit 5453cc1

Please sign in to comment.