-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfibonacci.cpp
50 lines (41 loc) · 1.3 KB
/
fibonacci.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include <eoslib/eos.hpp>
#include <eoslib/db.hpp>
extern "C" {
void init() {
}
struct compute {
uint64_t iterations;
};
struct PACKED(result) {
result() {};
result(eosio::name id, uint64_t value):id(id), value(value) {};
eosio::name id;
uint64_t value;
};
using Results = eosio::table<N(fibonacci), N(fibonacci), N(results), result, uint64_t>;
uint64_t fibonacci(uint64_t iterations) {
uint64_t first = 0;
uint64_t second = 1;
if (iterations == 0)
return 0;
eosio::print("1 ");
for (uint64_t i=1; i < iterations; i++) {
uint64_t res = first + second;
first = second;
second = res;
eosio::print(res, " ");
}
return second;
}
/// The apply method implements the dispatch of events to this contract
void apply( uint64_t code, uint64_t action ) {
if (action == N(compute)) {
auto message = eosio::current_message<compute>();
eosio::print("Calling fibonacci\n");
uint64_t num = fibonacci(message.iterations);
result res(eosio::name(code), num);
Results::store(res, res.id);
eosio::print("Stored result in database\n");
}
}
} // extern "C"