Decentralised Art Server
High-performance C++ backend that exposes HTML interface and a secure REST API for managing Performative Transactions entities
 
Loading...
Searching...
No Matches
condition.hpp
Go to the documentation of this file.
1#pragma once
2#include <absl/hash/hash.h>
3
4#include "condition.pb.h"
5
6namespace dcn
7{
16 template <typename H>
17 inline H AbslHashValue(H h, const Condition & c) {
18 return H::combine(std::move(h), c.name(), c.sol_src());
19 }
20}
Definition decentralised_art.hpp:30
H AbslHashValue(H h, const evmc::address &addr)
Definition evm_storage.hpp:137