Skip to content

Commit

Permalink
add missing FoliageBlockData
Browse files Browse the repository at this point in the history
  • Loading branch information
arvidn committed Oct 25, 2023
1 parent dab6383 commit 0e78ad2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion wheel/src/api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use chia_protocol::Bytes32;
use chia_protocol::FullBlock;
use chia_protocol::{
ChallengeBlockInfo, ChallengeChainSubSlot, ClassgroupElement, Coin, CoinSpend, CoinState,
CoinStateUpdate, EndOfSubSlotBundle, Foliage, FoliageTransactionBlock,
CoinStateUpdate, EndOfSubSlotBundle, Foliage, FoliageTransactionBlock, FoliageBlockData,
InfusedChallengeChainSubSlot, NewPeakWallet, PoolTarget, Program, ProofOfSpace,
PuzzleSolutionResponse, RegisterForCoinUpdates, RegisterForPhUpdates, RejectAdditionsRequest,
RejectBlockHeaders, RejectHeaderBlocks, RejectHeaderRequest, RejectPuzzleSolution,
Expand Down Expand Up @@ -366,6 +366,7 @@ pub fn chia_rs(py: Python, m: &PyModule) -> PyResult<()> {
m.add_class::<EndOfSubSlotBundle>()?;
m.add_class::<TransactionsInfo>()?;
m.add_class::<FoliageTransactionBlock>()?;
m.add_class::<FoliageBlockData>()?;
m.add_class::<Foliage>()?;
m.add_class::<ProofOfSpace>()?;
m.add_class::<RewardChainBlockUnfinished>()?;
Expand Down

0 comments on commit 0e78ad2

Please sign in to comment.