Skip to content

Commit b3eb0cd

Browse files
authored
feat: add benchmarking script (#652)
1 parent 2949957 commit b3eb0cd

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
function next() {
2+
return [
3+
{
4+
action: 'CREATE_TRANSACTION',
5+
data: {
6+
script: {
7+
plain: `vars {
8+
account $source
9+
}
10+
send [USD/2 100] (
11+
source = $source allowing unbounded overdraft
12+
destination = @bank
13+
)`,
14+
vars: {
15+
source: "src:" + uuid()
16+
}
17+
}
18+
}
19+
}
20+
]
21+
}

0 commit comments

Comments
 (0)