forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
multiprocess: Add IPC wrapper for Mining interface
- Loading branch information
Showing
7 changed files
with
106 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Copyright (c) 2024 The Bitcoin Core developers | ||
# Distributed under the MIT software license, see the accompanying | ||
# file COPYING or http://www.opensource.org/licenses/mit-license.php. | ||
|
||
@0xcd2c6232cb484a28; | ||
|
||
using Cxx = import "/capnp/c++.capnp"; | ||
$Cxx.namespace("ipc::capnp::messages"); | ||
|
||
using Proxy = import "/mp/proxy.capnp"; | ||
$Proxy.includeTypes("ipc/capnp/common-types.h"); | ||
|
||
struct BlockRef $Proxy.wrap("interfaces::BlockRef") { | ||
hash @0 :Data; | ||
height @1 :Int32; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// Copyright (c) 2024 The Bitcoin Core developers | ||
// Distributed under the MIT software license, see the accompanying | ||
// file COPYING or http://www.opensource.org/licenses/mit-license.php. | ||
|
||
#ifndef BITCOIN_IPC_CAPNP_MINING_TYPES_H | ||
#define BITCOIN_IPC_CAPNP_MINING_TYPES_H | ||
|
||
#include <interfaces/mining.h> | ||
#include <ipc/capnp/common.capnp.proxy-types.h> | ||
#include <ipc/capnp/common-types.h> | ||
#include <ipc/capnp/mining.capnp.proxy.h> | ||
#include <node/miner.h> | ||
#include <node/types.h> | ||
#include <validation.h> | ||
|
||
#endif // BITCOIN_IPC_CAPNP_MINING_TYPES_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Copyright (c) 2024 The Bitcoin Core developers | ||
# Distributed under the MIT software license, see the accompanying | ||
# file COPYING or http://www.opensource.org/licenses/mit-license.php. | ||
|
||
@0xc77d03df6a41b505; | ||
|
||
using Cxx = import "/capnp/c++.capnp"; | ||
$Cxx.namespace("ipc::capnp::messages"); | ||
|
||
using Common = import "common.capnp"; | ||
using Proxy = import "/mp/proxy.capnp"; | ||
$Proxy.include("interfaces/mining.h"); | ||
$Proxy.includeTypes("ipc/capnp/mining-types.h"); | ||
|
||
interface Mining $Proxy.wrap("interfaces::Mining") { | ||
isTestChain @0 (context :Proxy.Context) -> (result: Bool); | ||
isInitialBlockDownload @1 (context :Proxy.Context) -> (result: Bool); | ||
getTip @2 (context :Proxy.Context) -> (result: Common.BlockRef, hasResult: Bool); | ||
waitTipChanged @3 (context :Proxy.Context, currentTip: Data, timeout: Float64) -> (result: Common.BlockRef); | ||
createNewBlock @4 (scriptPubKey: Data, options: BlockCreateOptions) -> (result: BlockTemplate); | ||
processNewBlock @5 (context :Proxy.Context, block: Data) -> (newBlock: Bool, result: Bool); | ||
getTransactionsUpdated @6 (context :Proxy.Context) -> (result: UInt32); | ||
testBlockValidity @7 (context :Proxy.Context, block: Data, checkMerkleRoot: Bool) -> (state: BlockValidationState, result: Bool); | ||
} | ||
|
||
interface BlockTemplate $Proxy.wrap("interfaces::BlockTemplate") { | ||
getBlockHeader @0 (context: Proxy.Context) -> (result: Data); | ||
getBlock @1 (context: Proxy.Context) -> (result: Data); | ||
getTxFees @2 (context: Proxy.Context) -> (result: List(Int64)); | ||
getTxSigops @3 (context: Proxy.Context) -> (result: List(Int64)); | ||
getCoinbaseTx @4 (context: Proxy.Context) -> (result: Data); | ||
getCoinbaseCommitment @5 (context: Proxy.Context) -> (result: Data); | ||
getWitnessCommitmentIndex @6 (context: Proxy.Context) -> (result: Int32); | ||
} | ||
|
||
struct BlockCreateOptions $Proxy.wrap("node::BlockCreateOptions") { | ||
useMempool @0 :Bool $Proxy.name("use_mempool"); | ||
coinbaseMaxAdditionalWeight @1 :UInt64 $Proxy.name("coinbase_max_additional_weight"); | ||
coinbaseOutputMaxAdditionalSigops @2 :UInt64 $Proxy.name("coinbase_output_max_additional_sigops"); | ||
} | ||
|
||
# TODO add fields to this struct | ||
struct BlockValidationState $Proxy.wrap("BlockValidationState") { | ||
} |