fuel-core 0.18.3

Fuel client library is aggregation of all fuels service. It contains the all business logic of the fuel protocol.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::database::{
    storage::DatabaseColumn,
    Column,
};
use fuel_core_storage::tables::Receipts;

impl DatabaseColumn for Receipts {
    fn column() -> Column {
        Column::Receipts
    }
}