We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc5c83f commit e58c58bCopy full SHA for e58c58b
scripts/bulk-create-proposal.ts
@@ -147,7 +147,7 @@ export async function run(args: any = process.argv) {
147
.updateStateV0({
148
newState: {
149
voting: {
150
- startTs: new BN(Date.now() / 1000).toNumber()
+ startTs: new BN(Date.now() / 1000)
151
}
152
},
153
})
scripts/create-proposal.ts
@@ -131,7 +131,7 @@ export async function run(args: any = process.argv) {
131
132
133
134
- startTs: new anchor.BN(Date.now() / 1000).toNumber()
+ startTs: new anchor.BN(Date.now() / 1000)
135
136
137
0 commit comments