Rename storage_last_id to storage_block_hash

This commit is contained in:
Michael Vines
2019-03-02 09:50:41 -08:00
committed by Greg Fitzgerald
parent ea110efabd
commit 81cd461591
5 changed files with 22 additions and 22 deletions

View File

@@ -137,7 +137,7 @@ pub enum RpcRequest {
RegisterNode,
SignVote,
DeregisterNode,
GetStorageMiningLastId,
GetStorageBlockHash,
GetStorageMiningEntryHeight,
GetStoragePubkeysForEntryHeight,
}
@@ -157,7 +157,7 @@ impl RpcRequest {
RpcRequest::RegisterNode => "registerNode",
RpcRequest::SignVote => "signVote",
RpcRequest::DeregisterNode => "deregisterNode",
RpcRequest::GetStorageMiningLastId => "getStorageMiningLastId",
RpcRequest::GetStorageBlockHash => "getStorageBlockHash",
RpcRequest::GetStorageMiningEntryHeight => "getStorageMiningEntryHeight",
RpcRequest::GetStoragePubkeysForEntryHeight => "getStoragePubkeysForEntryHeight",
};