PlanEvent -> Witness

The term used by the Simplicity smart contract language
This commit is contained in:
Greg Fitzgerald
2018-03-20 15:25:48 -06:00
parent 6b66e1a077
commit 4379fabf16
2 changed files with 17 additions and 19 deletions

View File

@@ -5,7 +5,7 @@
use hash::Hash;
use entry::Entry;
use event::Event;
use plan::{Action, Plan, PlanEvent};
use plan::{Action, Plan, Witness};
use transaction::Transaction;
use signature::{KeyPair, PublicKey, Signature};
use mint::Mint;
@@ -141,7 +141,7 @@ impl Accountant {
}
let mut plan = tr.plan.clone();
let actionable = plan.process_event(PlanEvent::Timestamp(self.last_time));
let actionable = plan.process_witness(Witness::Timestamp(self.last_time));
if !actionable {
self.pending.insert(tr.sig, plan);
@@ -154,7 +154,7 @@ impl Accountant {
fn process_verified_sig(&mut self, from: PublicKey, tx_sig: Signature) -> Result<()> {
let actionable = if let Some(plan) = self.pending.get_mut(&tx_sig) {
plan.process_event(PlanEvent::Signature(from))
plan.process_witness(Witness::Signature(from))
} else {
false
};
@@ -186,7 +186,7 @@ impl Accountant {
// Check to see if any timelocked transactions can be completed.
let mut completed = vec![];
for (key, plan) in &mut self.pending {
if plan.process_event(PlanEvent::Timestamp(self.last_time)) {
if plan.process_witness(Witness::Timestamp(self.last_time)) {
completed.push(key.clone());
}
}