Remove getTransactionsUpdated() from mining interface

It's unnecessary to expose it via this interface.
This commit is contained in:
Sjors Provoost
2024-10-31 11:58:18 -07:00
parent bfc4e029d4
commit 9a47852d88
4 changed files with 4 additions and 13 deletions

View File

@@ -19,7 +19,6 @@ interface Mining $Proxy.wrap("interfaces::Mining") {
waitTipChanged @3 (context :Proxy.Context, currentTip: Data, timeout: Float64) -> (result: Common.BlockRef);
createNewBlock @4 (options: BlockCreateOptions) -> (result: BlockTemplate);
processNewBlock @5 (context :Proxy.Context, block: Data) -> (newBlock: Bool, result: Bool);
getTransactionsUpdated @6 (context :Proxy.Context) -> (result: UInt32);
}
interface BlockTemplate $Proxy.wrap("interfaces::BlockTemplate") {