1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-03-09 15:40:10 +00:00
ton/test/fisherman/block_manipulator/base.hpp
2025-01-29 12:02:08 +04:00

13 lines
251 B
C++

#pragma once
#include "crypto/block/block-auto.h"
namespace test::fisherman {
class BaseManipulator {
public:
virtual void modify(block::gen::Block::Record &block) = 0;
virtual ~BaseManipulator() = default;
};
} // namespace test::fisherman