跟踪Exonum

时间:2017-09-23 07:57:17

标签: rust blockchain exonum

我在区块链上有一个单个对象,该对象将不时更新。我想跟踪这些变化。如何描述这样的结构Vec<(u32, u32)>并在开始时对其进行初始化?现在我有:

encoding_struct! {
    struct AC {
        const SIZE = 16;
        field s: Vec<u32> [00 => 08]
        field o: Vec<u32> [08 => 16]
    }
}

然后等待一个特殊的空init事务

message! {
    struct TxInitAC {
        const TYPE = SERVICE_ID;
        const ID = TX_INIT_AC;
        const SIZE = 0;
    }
}

使用execute方法

fn execute(&self, view: &mut Fork) {
    let mut schema = CurrencySchema { view };                   
    let ac = AC::new(vec![], vec![]);        
    schema.access_control().push(ac);
}

1 个答案:

答案 0 :(得分:1)

在与Gitter的开发人员交谈后,我想出了一个解决方案。

要在encoding_struct!中描述复合对象,必须在相应的encoding_struct!中描述每个组件。如果问题是:

encoding_struct! {
    struct Pair {
        const SIZE = 8;
        field s: u32 [00 => 04]
        field o: u32 [04 => 08]
    }
}

encoding_struct! {
    struct AC {
        const SIZE = 8;
        field inner : Vec<Pair> [00 => 08]
    }
}

要初始化区块链数据库,必须在initialize特征中实现Service函数,例如,使用空向量初始化:

impl Service for MService {
//...
    fn initialize(&self, fork: &mut Fork) -> Value {
        let mut schema = MatrixSchema { view: fork };
        let matrix = AC::new(vec![]);
        // assume method ac() is implemented for the schema
        schema.ac().set(ac);        
        Value::Null
    }
}