Skip to content

Commit 395f2ff

Browse files
fullpipe0xdeafbeef
authored andcommitted
fix: add missing argument for run_local
1 parent 5f368ea commit 395f2ff

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

Cargo.lock

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ where
409409

410410
function
411411
.clone()
412-
.run_local(&SimpleClock, state.account, input)
412+
.run_local(&SimpleClock, state.account, input, Default::default())
413413
.map(Some)
414414
}
415415

@@ -550,7 +550,7 @@ where
550550

551551
let result = function
552552
.clone()
553-
.run_local(&SimpleClock, state.account, input)
553+
.run_local(&SimpleClock, state.account, input, Default::default())
554554
.map(Some)?;
555555
Ok(result)
556556
}

0 commit comments

Comments
 (0)