Skip to content
Merged

Wasm #458

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion acbu_escrow/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ impl Escrow {

// CEI: write state before the external token transfer so any token-level
// callback observes the escrow as already recorded.
env.storage()
env.storage()
.temporary()
.set(&key, &(payer.clone(), payee.clone(), amount, expiry));

Expand Down
3 changes: 2 additions & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,10 @@ fn verify_source_hashes() {
}
Err(e) => {
eprintln!(
"cargo:warning=Could not read {} for hash check: {}",
"error[build]: Could not read {} for hash check: {}",
path, e
);
process::exit(1);
}
}
}
Expand Down
Loading